/* ============================================
   AURUM — Luxury Lifestyle Journal
   ============================================ */

:root {
  --ivory: #faf8f4;
  --paper: #ffffff;
  --ink: #1c1b19;
  --ink-soft: #55524c;
  --gold: #b0893c;
  --gold-soft: #cbb27c;
  --line: #e5e0d6;
  --serif-jp: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --serif-en: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Montserrat", "Hiragino Kaku Gothic ProN", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--serif-jp);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.9;
  font-size: 16px;
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; transition: opacity .3s ease; }
a:hover { opacity: .7; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

/* ---------- Utility labels ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.divider {
  width: 48px; height: 1px;
  background: var(--gold);
  margin: 22px auto;
  border: none;
}
.divider.left { margin: 22px 0; }

/* ---------- Header ---------- */
.site-header {
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 24px 0;
}

.brand {
  font-family: var(--serif-en);
  font-size: 34px;
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  font-weight: 500;
  color: var(--ink);
}

.brand-tag {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--ink-soft);
  margin-top: 6px;
  text-transform: uppercase;
}

.global-nav {
  margin-top: 20px;
  width: 100%;
}

.global-nav ul {
  display: flex;
  justify-content: center;
  gap: 42px;
  list-style: none;
  flex-wrap: wrap;
  padding-bottom: 16px;
}

.global-nav a {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.global-nav a:hover,
.global-nav a.active {
  border-bottom-color: var(--gold);
  color: var(--gold);
  opacity: 1;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 82vh;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(20,18,14,0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 24px 72px;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}

.hero-content .eyebrow { color: var(--gold-soft); }

.hero-title {
  font-size: clamp(28px, 4.6vw, 52px);
  font-weight: 500;
  line-height: 1.4;
  margin: 16px 0 12px;
  letter-spacing: 0.06em;
}

.hero-lede {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
}

.hero-cta {
  display: inline-block;
  margin-top: 28px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.6);
  padding: 14px 36px;
  transition: background .3s ease, color .3s ease;
}

.hero-cta:hover {
  background: #fff;
  color: var(--ink);
  opacity: 1;
}

/* ---------- Section ---------- */
.section { padding: 96px 0; }
.section.alt { background: var(--paper); }

.section-head { text-align: center; margin-bottom: 60px; }

.section-title {
  font-family: var(--serif-en);
  font-size: 30px;
  letter-spacing: 0.24em;
  text-indent: 0.24em;
  font-weight: 500;
  margin-top: 12px;
}

.section-title-jp {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 10px;
  letter-spacing: 0.2em;
}

/* ---------- Article cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}

.card-grid.two { grid-template-columns: repeat(2, 1fr); }

.card { background: transparent; }

.card-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 20px;
  background: #ddd8cc;
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.6,.2,1);
}

.card:hover .card-thumb img { transform: scale(1.05); }

.card-cat {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.card-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  margin: 10px 0 8px;
}

.card-excerpt {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.9;
}

.card-date {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: #a39d90;
  margin-top: 12px;
  text-transform: uppercase;
}

.badge-pr {
  display: inline-block;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.14em;
  border: 1px solid #c5bfae;
  color: #8d8776;
  padding: 2px 8px;
  margin-left: 10px;
  vertical-align: 2px;
}

/* ---------- Category banners (index) ---------- */
.cat-banner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cat-banner {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: #333;
}

.cat-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.6,.2,1);
  opacity: 0.9;
}

.cat-banner:hover img { transform: scale(1.06); }

.cat-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 40%, rgba(15,13,10,0.65) 100%);
}

.cat-banner-label {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding-bottom: 30px;
}

.cat-banner-label .en {
  font-family: var(--serif-en);
  font-size: 21px;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  display: block;
}

.cat-banner-label .jp {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,0.8);
}

/* ---------- Editor / About ---------- */
.editor-block {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: center;
}

.editor-photo {
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(20%);
}

.editor-name {
  font-family: var(--serif-en);
  font-size: 24px;
  letter-spacing: 0.2em;
  margin: 14px 0 4px;
}

.editor-role {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.editor-bio {
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 20px;
}

/* ---------- Newsletter ---------- */
.newsletter {
  background: var(--ink);
  color: var(--ivory);
  text-align: center;
  padding: 90px 24px;
}

.newsletter .section-title { color: var(--ivory); }

.newsletter p {
  font-size: 13px;
  color: #b5b0a6;
  max-width: 480px;
  margin: 18px auto 32px;
}

.newsletter-form {
  display: flex;
  max-width: 460px;
  margin: 0 auto;
  border: 1px solid #4a463f;
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 15px 18px;
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  outline: none;
}

.newsletter-form button {
  background: var(--gold);
  color: #fff;
  border: none;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  padding: 0 30px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background .3s;
}

.newsletter-form button:hover { background: #9a7630; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ivory);
  border-top: 1px solid var(--line);
  padding: 70px 24px 40px;
  text-align: center;
}

.footer-brand {
  font-family: var(--serif-en);
  font-size: 24px;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
}

.footer-nav {
  margin: 30px 0 24px;
}

.footer-nav ul {
  display: flex;
  justify-content: center;
  gap: 28px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-nav a {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.footer-legal {
  font-family: var(--sans);
  font-size: 10px;
  color: #a39d90;
  letter-spacing: 0.08em;
  line-height: 2;
}

/* ---------- Page header (category / static pages) ---------- */
.page-head {
  text-align: center;
  padding: 84px 24px 64px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.page-head .section-title { font-size: 36px; }

.page-lede {
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 24px auto 0;
}

/* ---------- Article ---------- */
.article-hero {
  position: relative;
  height: 62vh;
  min-height: 420px;
  overflow: hidden;
}

.article-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.article-head {
  text-align: center;
  padding: 64px 24px 48px;
}

.article-title {
  font-size: clamp(24px, 3.4vw, 38px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin: 18px auto 20px;
  max-width: 800px;
}

.article-meta {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #a39d90;
  text-transform: uppercase;
}

.pr-notice {
  font-family: var(--sans);
  font-size: 11px;
  color: #8d8776;
  background: #f1ede3;
  border: 1px solid var(--line);
  padding: 10px 18px;
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
  letter-spacing: 0.06em;
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.article-body p {
  margin-bottom: 1.8em;
  font-size: 15.5px;
}

.article-body h2 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin: 2.6em 0 1em;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  line-height: 1.5;
}

.article-body h2 .num {
  font-family: var(--serif-en);
  color: var(--gold);
  font-size: 30px;
  margin-right: 14px;
  font-style: italic;
}

.article-body h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 2.2em 0 0.8em;
  letter-spacing: 0.06em;
}

.article-body figure { margin: 2.4em 0; }

.article-body figcaption {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: #a39d90;
  margin-top: 10px;
  text-align: center;
}

.article-body ul, .article-body ol {
  margin: 0 0 1.8em 1.4em;
  font-size: 15px;
}

.article-body li { margin-bottom: 0.5em; }

.lead-para {
  font-size: 17px !important;
  line-height: 2.1;
}

blockquote {
  border-left: 2px solid var(--gold);
  padding: 6px 0 6px 28px;
  margin: 2.4em 0;
  font-size: 17px;
  color: var(--ink-soft);
  font-style: normal;
}

/* ---------- Info table ---------- */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
  font-size: 13.5px;
}

.info-table th, .info-table td {
  border: 1px solid var(--line);
  padding: 12px 16px;
  text-align: left;
  vertical-align: top;
}

.info-table th {
  background: #f3efe6;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 600;
  white-space: nowrap;
}

.table-scroll { overflow-x: auto; }

/* ---------- Affiliate blocks ---------- */
.affiliate-box {
  border: 1px solid var(--gold-soft);
  background: var(--paper);
  padding: 32px;
  margin: 2.6em 0;
  text-align: center;
}

.affiliate-box .label {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: #a39d90;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.affiliate-box .product-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.affiliate-box .product-note {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-bottom: 22px;
}

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  padding: 15px 44px;
  text-transform: uppercase;
  transition: background .3s;
}

.btn-gold:hover { background: #9a7630; opacity: 1; }

.btn-outline {
  display: inline-block;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  padding: 13px 36px;
  text-transform: uppercase;
}

/* ---------- Merit / Demerit ---------- */
.merit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 2em 0;
}

.merit-col {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 24px;
}

.merit-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.merit-col.good h4 { color: var(--gold); }
.merit-col.bad h4 { color: #8b8b8b; }

.merit-col ul { margin: 0 0 0 1.2em; font-size: 13px; }

/* ---------- Related articles ---------- */
.related {
  border-top: 1px solid var(--line);
  padding: 70px 0 90px;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: #a39d90;
  padding: 20px 24px;
  max-width: 1180px;
  margin: 0 auto;
  text-transform: uppercase;
}

.breadcrumb a { color: #a39d90; }

/* ---------- Static page body ---------- */
.static-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px 100px;
}

.static-body h2 {
  font-size: 20px;
  margin: 2.4em 0 0.8em;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}

.static-body p, .static-body li { font-size: 14.5px; color: var(--ink-soft); }
.static-body p { margin-bottom: 1.6em; }
.static-body ul { margin: 0 0 1.6em 1.4em; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-banner-grid { grid-template-columns: repeat(2, 1fr); }
  .editor-block { grid-template-columns: 1fr; gap: 36px; }
  .editor-photo { max-width: 280px; }
  .global-nav ul { gap: 22px; }
  .section { padding: 70px 0; }
}

@media (max-width: 560px) {
  .card-grid, .card-grid.two { grid-template-columns: 1fr; }
  .brand { font-size: 26px; }
  .merit-grid { grid-template-columns: 1fr; }
  .hero { height: 68vh; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { padding: 14px; }
}
