/* ===================================
   Temporary: reduce font-weight across theme by 100
   This block lowers common font-weight usages by 100 as a quick experiment.
   It uses !important to override specific declarations. If you prefer
   to edit individual declarations, we can update the original rules.
   =================================== */

/* Reduce default text weight (was 400 -> now 300) */
body,
a,
h1, h2, h3, h4, h5, h6,
p, span, li, div,
.primary-nav a,
.header-lang,
.footer-heading,
.footer-column p,
.manifesto-page .manifesto-content-atom h3,
.manifesto-page .manifesto-content-atom h4,
.manifesto-page .privacy-policy-content-atom h3,
.manifesto-page .privacy-policy-content-atom h4 {
  font-weight: 300 !important;
}

/* Reduce heavier weights (was 600 -> now 500) */
.cta-link,
.manifesto-page .manifesto-content-atom strong,
.manifesto-page .privacy-policy-content-atom strong {
  font-weight: 500 !important;
}

/* Reduce medium weight (was 500 -> now 400) */
.language-switcher-mobile .current-lang {
  font-weight: 400 !important;
}

/* Reduce light weight (was 300 -> now 200) */
.hero-subtitle,
.mobile-menu .language-switcher-mobile {
  font-weight: 200 !important;
}

/* End temporary font-weight adjustments */

/*
Theme Name: Poiesis
Text Domain: poiesis
Version: 0.1.0
Author: Poiesis
*/

/* ===================================
   1. CSS Variables
   =================================== */
:root {
  /* Colors */
  --color-black: #000;
  --color-white: #fff;
  --color-gold: #C3A264;
  --color-light-beige: #F5F1E8;
  --color-dark-gray: #2B2B2B;

  /* Typography */
  --font-primary: 'Imbue', serif;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 64px;
  --space-xxl: 96px;
}

/* ===================================
   2. Base Styles
   =================================== */
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-primary);
  color: var(--color-dark-gray);
  background: var(--color-white);
  font-weight: 400;
}

a {
  color: var(--color-dark-gray);
  text-decoration: none;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

p, span, li, div {
  font-weight: 400;
}

main {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

/* ===================================
   3. Layout Utilities
   =================================== */
#hero {
  padding: var(--space-xxl) var(--space-lg);
  background: var(--color-light-beige);
}

.container {
  max-width: 1990px;
  margin: 0 auto;
  padding: 0 64px;
}

.container-wide {
  max-width: 1990px;
  margin: 0 auto;
}

/* ===================================
   4. Common Components
   =================================== */

/* CTA Links */
.cta-link {
  display: inline-block;
  font-size: 30px;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  margin-bottom: 8px;
  line-height: 45px;
  transition: opacity .3s;
  font-family: 'Imbue', serif;
}

.cta-link:hover {
  opacity: .6;
}

.cta-link.white {
  color: #fff;
}

.cta-link.dark {
  color: #000;
}

.cta-link.center {
  display: block;
  text-align: center;
}

.arrow {
  margin-left: 8px;
}

.manifesto-section .cta-link {
  color: #fff !important;
}

/* Carousel / Gallery */
.carousel-wrapper {
  position: relative;
}

.carousel {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.carousel-track-container {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform .5s ease;
}

.carousel-item {
  min-width: 100%;
  flex: 0 0 100%;
}

.carousel-item img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: transparent;
  border: none;
  border-radius: 0;
  color: transparent;
  font-size: 0;
  line-height: 0;
  transition: opacity .3s;
  z-index: 10;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.carousel-btn:hover {
  opacity: .8;
}

.carousel-btn.prev {
  left: 24px;
  background-image: url('/wp-content/themes/poiesis/assets/img/left_arrow.png');
}

.carousel-btn.next {
  right: 24px;
  background-image: url('/wp-content/themes/poiesis/assets/img/right_arrow.png');
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .3);
  cursor: pointer;
  transition: background .3s;
}

.dot.active {
  background: #fff;
}

/* ===================================
   5. Header
   =================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  justify-content: space-between;
}

.site-header .wrap {
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-logo {
  font-size: 56pt;
  font-weight: 400;
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
  margin-left: 44px;
  margin-top: 19px;
  line-height: 1;
}

.site-logo:hover {
  color: var(--color-gold);
}

.header-left {
  display: flex;
  align-items: center;
}

.header-right {
  display: flex;
  align-items: flex-end;
  gap: 32px;
}

.header-lang {
  text-align: right;
  width: 100%;
  color: var(--color-gold);
}

.primary-nav {
  margin-left: auto;
}

.primary-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 24px;
  align-items: flex-start;
}

.primary-nav ul li {
  margin: 0;
}

.primary-nav ul li a {
  text-decoration: none;
}

.primary-nav a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 24pt;
  font-weight: 400;
  transition: color 0.3s ease;
  display: block;
  margin-top: 42px;
}

.primary-nav a:hover {
  color: var(--color-gold);
}

.lang-switcher:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

/* Front page header overlay */
.home .site-header,
.front-page .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  z-index: 1000;
  border-bottom: none;
}

.home .site-header .wrap,
.front-page .site-header .wrap {
  padding: 24px;
}

.home .site-header nav a,
.front-page .site-header nav a {
  color: #fff;
}

.home .site-header a,
.home .site-header strong,
.front-page .site-header a,
.front-page .site-header strong {
  color: #fff;
}

/* ===================================
   6. Footer
   =================================== */
.site-footer-desktop {
  background-image: url('/wp-content/uploads/main/footer.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 80px 40px 40px;
}

.site-footer-mobile {
  display: none;
}

.footer-wrapper {
  height: 100dvh;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-top: 350px;
  padding-bottom: 60px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column h3 {
  font-size: 100px;
  font-family: "IM FELL Great Primer", serif;
  border: none;
  margin-bottom: 0px;
  padding-bottom: 0px;
}

.footer-column p {
  margin-top: 0px;
  font-size: 24px;
}

.footer-heading {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-black);
  margin: 0 0 12px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.footer-right-content {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 20px;
}

.footer-links li {
  margin: 0;
}

.footer-links a {
  color: var(--color-black);
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 20px;
}

.footer-bottom-left,
.footer-bottom-center,
.footer-bottom-right {
  flex: 1;
  font-weight: 400;
}

.footer-bottom-left {
  text-align: left;
  display: flex;
  flex-flow: column;
  gap:10px;
}

.privacy-policy-link {
  font-size: 10px;
  font-weight: 400;
  border-bottom: 1px solid #000;
  width: fit-content;
  font-family: 'Inter', serif;
}

.footer-copyright {
  font-size: 10px;
  font-weight: 400;
  font-family: 'Roboto', serif;
}

.footer-bottom-center {
  text-align: center;
  font-size: 14px;
  color: var(--color-black);
  gap: 10px
}

.footer-bottom-right {
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 24px;
  gap: 20px;
}

.footer-bottom-left a,
.footer-bottom-right a {
  color: var(--color-black);
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-bottom-left a:hover,
.footer-bottom-right a:hover {
  color: var(--color-gold);
}

.footer-social {
  display: inline-block;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.footer-social:hover {
  transform: scale(1.2);
}

.back-to-top {
  cursor: pointer;
}

/* ===================================
   7. Front Page Sections
   =================================== */

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0 !important;
  z-index: 1;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.hero-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .3);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 24px;
}

.hero-heading {
  font-size: clamp(48px, 8vw, 124px);
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  color: var(--color-white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: .01em;
}

.hero-video-background {
  overflow: hidden;
}

.hero-video-background .hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Manifesto Section */
.manifesto-section {
  background: #000;
  color: #fff;
  text-align: left;
}

.manifesto-text {
  font-size: 60px;
  line-height: 1.8;
  margin-inline: 200px;
  font-weight: 400;
  color: #fff;
}

/* Heritage Section */
.heritage-section {
  background-size: cover;
  background-position: center;
}

.heritage-content {
  display: grid;
  align-items: start;
}

.heritage-line {
  font-family: var(--font-primary);
  display: block;
  color: var(--color-gold);
}

.heritage-text {
  color: #fff;
  font-size: 20px;
  font-family: 'Libre Baskerville', serif;
}

.heritage-text p,
.heritage-description {
  text-align: left;
  margin: 0;
}

.japan-map-img {
  display: block;
  max-width: 100%;
  height: auto;
}

.japan-map-mobile {
  display: none;
}

/* About Section */
.about-section {
  background: #000;
  color: #fff;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

.about-text h2 {
  font-size: 48px;
  margin-bottom: 32px;
  font-weight: 400;
}

.about-text p {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 32px;
  font-family: 'Libre Baskerville', serif;
  text-align: start;
}

.about-img {
  display: block;
  max-width: 100%;
  height: auto;
}

.about-img-mobile {
  display: none;
}

/* Commission Section */
.commissions-section {
  background: #fff;
}

.commissions-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.commissions-text h2 {
  font-size: 48px;
  margin-bottom: 32px;
  font-weight: 400;
}

.commissions-text p {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 32px;
  font-family: 'Libre Baskerville', serif;
}

.commissions-text .sub-text {
  font-size: 16px;
  margin-bottom: 32px;
}

.commissions-img {
  display: block;
  max-width: 100%;
  height: auto;
}

.commissions-img-mobile {
  display: none;
}

/* News Section */
.news-section {
  background: #000;
  color: #fff;
  height: 45vh;
  gap: 96px;
}

.news-text h2 {
  font-size: 48px;
  margin-bottom: 32px;
  margin-top: 0px;
  font-weight: 400;
}

.news-text p {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 32px;
  font-family: 'Libre Baskerville', serif;
}

.news-grid {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.news-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.news-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform .3s;
}

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

.news-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .7) 50%, transparent 100%);
}

.news-overlay h3 {
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 400;
}

.news-overlay p {
  font-size: 12px;
  opacity: .8;
}

.progress-bar {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, .2);
  margin: 48px 0;
}

.progress-fill {
  width: 25%;
  height: 100%;
  background: var(--color-gold);
}

/* Blog Section */
.blog-section {
  background: var(--color-gold);
  height: 45vh;
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 64px;
}

.blog-item {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.blog-item:last-child {
  border-bottom: none;
}

.blog-item img {
  width: 150px;
  height: 150px;
  object-fit: cover;
}

.blog-content {
  display: flex;
  flex-direction: column;
}

.blog-content time {
  font-size: 14px;
  opacity: .7;
  margin-bottom: 8px;
}

.blog-content h3 {
  font-size: 24px;
  font-weight: 400;
}

.btn-more {
  width: 80px;
  height: 80px;
  border: 2px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
  transition: transform .3s;
}

.btn-more:hover {
  transform: scale(1.1);
}

/* Gallery Section */
.gallery-section .container-wide {
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 0;
  padding-bottom: 0;
}

.gallery-section .carousel,
.gallery-section .carousel-track-container,
.gallery-section .carousel-track,
.gallery-section .carousel-item {
  margin: 0;
}

.gallery-section .carousel-item img {
  display: block;
  width: 100%;
  height: auto;
}

.gallery-section .carousel-controls {
  background: #000;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 110px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0;
  padding: 22px 40px 22px;
}

.gallery-section .carousel-controls .carousel-indicators {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===================================
   8. Fixed Pages
   =================================== */

/* Manifesto Page */
.manifesto-page {
  background: #000;
  color: #fff;
  min-height: 100vh;
}

.manifesto-page .manifesto-hero {
  display: block;
  align-items: center;
  margin: 0 auto;
  padding-top: 120px;
}

.manifesto-page .manifesto-title-group h1 {
  font-size: 90px;
  margin: 0 0 32px 80px;
  color: var(--color-gold);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: .02em;
}

.manifesto-page .manifesto-hero-image {
  margin: 0;
}

.manifesto-page .manifesto-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.manifesto-page .about-us-content-image {
  margin: 0;
}

.manifesto-page .about-us-content-image img {
  width: 50%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.manifesto-page .meet-inami-content-image {
  margin: 0;
}

.manifesto-page .meet-inami-content-image img {
  width: 100%;
  height: auto;
  display: block;
}

.manifesto-page .manifesto-heading {
  font-size: 72px;
}

.manifesto-page .manifesto-content {
  display: grid;
  grid-template-columns: 1fr 3fr;
  padding: 0 64px 40px;
}

.manifesto-page .manifesto-content > * {
  grid-column: 2;
}

.manifesto-page .manifesto-content-atom {
  display: block;
  margin-bottom: 72px;
}

.manifesto-page .manifesto-content-atom h3 {
  font-size: 72px;
  margin: 0 0 24px 0px;
  font-weight: 400;
  color: var(--color-gold);
  letter-spacing: .05em;
  width: 100%;
  border-bottom: 1px solid var(--color-gold);
}
.manifesto-page .manifesto-content-atom.gallery-header {
  margin-bottom: 0px;
}

.manifesto-page .manifesto-content-atom h4 {
  font-size: 36px;
  margin: 0 0 24px;
  font-weight: 400;
  color: #fff;
  letter-spacing: .05em;
  width: 100%;
  border-bottom: 1px solid #fff;
  font-family: 'Libre Baskerville', serif;
}

.manifesto-page .manifesto-content-atom p {
  display: block;
  font-size: 16px;
  width: 100%;
  line-height: 1.8;
  margin: 0 0 24px;
  color: #fff;
  font-family: 'Libre Baskerville', serif;
}

.manifesto-page .manifesto-content-atom strong {
  color: var(--color-gold);
  font-weight: 600;
}

.manifesto-page .manifesto-content-atom .no-border {
  border: none !important;
}

.manifesto-page .manifesto-content-atom .our-story {
  border: 1px solid var(--color-gold);
  padding-top: 34px;
  padding-inline: 20px;
}

.beauty-must-be-lived {
  background-color: #fff !important;
  padding-top: 90px;
  padding-bottom: 90px;
  padding-inline: 20px;
}

.beauty-must-be-lived p {
  color: #000 !important;
}

.manifesto-page .manifesto-content-atom .our-practices {
  display: grid;
  grid-template-columns: 1fr 3fr;
  padding: 0 64px 120px;
}

.manifesto-page .manifesto-content-atom .our-practices > * {
  grid-column: 2;
}

.manifesto-page .manifesto-content-atom .our-practices h4 {
  font-size: 18pt;
  margin: 0 0 16px;
  font-weight: 400;
  color: var(--color-gold);
  letter-spacing: .05em;
  width: 100%;
  border-bottom: 1px solid var(--color-gold);
}

.manifesto-page .manifesto-content-atom .our-practices p {
  display: block;
  font-size: 16px;
  width: 100%;
  line-height: 1.8;
  margin: 0 0 24px;
  color: #fff;
  font-family: 'Libre Baskerville', serif;
}

/* ===================================
   Privacy Policy Content Atoms
   (Duplicated from manifesto-content-atom)
   =================================== */
.manifesto-page .privacy-policy-content {
  display: block;
  padding: 0 240px 120px;
}
.manifesto-page .privacy-policy-content-atom {
  display: block;
  margin-bottom: 72px;
}

.manifesto-page .privacy-policy-content-atom h3 {
  font-size: 48px;
  margin: 0 0 24px;
  font-weight: 400;
  color: var(--color-gold);
  letter-spacing: .05em;
  width: 100%;
  border-bottom: 1px solid var(--color-gold);
}

.manifesto-page .privacy-policy-content-atom h4 {
  font-size: 36px;
  margin: 0 0 24px;
  font-weight: 400;
  color: #fff;
  letter-spacing: .05em;
  width: 100%;
  border-bottom: 1px solid #fff;
  font-family: 'Libre Baskerville', serif;
}

.manifesto-page .privacy-policy-content-atom p {
  display: block;
  font-size: 16px;
  width: 100%;
  line-height: 1.8;
  margin: auto;
  color: #fff;
  font-family: 'Libre Baskerville', serif;
}

.manifesto-page .privacy-policy-content-atom ul {
  color: #fff;
  font-family: 'Libre Baskerville', serif;
  font-size: 16px;
  line-height: 1.8;
  margin: auto 0;
  padding-left: 20px;
}

.manifesto-page .privacy-policy-content-atom strong {
  color: var(--color-gold);
  font-weight: 600;
}

.manifesto-page .privacy-policy-content-atom .no-border {
  border: none !important;
}

.manifesto-page .privacy-policy-content-atom .message {
  border: 1px solid var(--color-gold);
  padding-top: 32px;
  padding-bottom: 34px;
  padding-left: 50px;
  padding-right: 80px;
}
.manifesto-page .privacy-policy-content-atom .message p {
  color: var(--color-gold);
}

.manifesto-page .privacy-policy-content-atom .our-practices {
  display: grid;
  grid-template-columns: 1fr 3fr;
  padding: 0 64px 120px;
}

.manifesto-page .privacy-policy-content-atom .our-practices > * {
  grid-column: 2;
}

.manifesto-page .privacy-policy-content-atom .our-practices h4 {
  font-size: 18pt;
  margin: 0 0 16px;
  font-weight: 400;
  color: var(--color-gold);
  letter-spacing: .05em;
  width: 100%;
  border-bottom: 1px solid var(--color-gold);
}

.manifesto-page .privacy-policy-content-atom .our-practices p {
  display: block;
  font-size: 16px;
  width: 100%;
  line-height: 1.8;
  margin: 0 0 24px;
  color: #fff;
  font-family: 'Libre Baskerville', serif;
}

/* Meet Inami Gallery Section */
.meet-inami-gallery-section .container-wide {
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 0;
  padding-bottom: 0;
}

.meet-inami-gallery-section .carousel,
.meet-inami-gallery-section .carousel-track-container,
.meet-inami-gallery-section .carousel-track,
.meet-inami-gallery-section .carousel-item {
  margin: 0;
}

.meet-inami-gallery-section .carousel-item img {
  display: block;
  height: auto;
}

.meet-inami-gallery-section .carousel-controls {
  background: #000;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  height: 110px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0;
  padding: 22px 40px 22px;
}

.meet-inami-gallery-section .carousel-controls .carousel-indicators {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===================================
   9. Mobile Menu
   =================================== */
.mobile-menu-toggle {
  display: none;
  position: relative;
  padding: 10px 18px;
  border-radius: 999px;
  background: #C3A264;
  color: #000;
  font-family: 'Imbue', serif;
  font-size: 16px;
  letter-spacing: .02em;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .15);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100vw;
  height: 100vh;
  background: #C3A264;
  z-index: 2000;
  padding: 32px;
  transition: right .4s ease;
  overflow-y: auto;
  isolation: isolate;
  overflow-x: hidden;
}

.mobile-menu.active {
  right: 0;
  display: block;
}

.mobile-menu-close {
  display: block;
  position: relative;
  top: 24px;
  right: 24px;
  margin-left: auto;
  margin-right: 20px;
  font-size: 14px;
  color: #000;
  background: none;
  border: none;
}

.mobile-menu-main {
  display: block;
  gap: 24px;
  align-items: start;
  margin: 64px 0;
}

.language-switcher-mobile {
  font-size: 16px;
  align-self: start;
}

.language-switcher-mobile .current-lang {
  font-weight: 500;
}

.language-switcher-mobile .current-lang::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #000;
  margin-right: 6px;
  vertical-align: middle;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav a {
  display: block;
  font-size: 24px;
  color: #000;
  text-align: right;
  text-decoration: none;
  padding: 16px 40px;
  font-size: 18pt;
  font-weight: 400;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: rgba(195, 162, 100, 0.1);
  color: var(--color-gold);
}

.mobile-newsletter {
  max-width: 400px;
  margin: 0 auto;
}

.mobile-newsletter h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.mobile-newsletter form {
  display: flex;
  border-bottom: 2px solid #000;
  padding-bottom: 8px;
}

.mobile-newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  font-size: 14px;
  outline: none;
}

.mobile-newsletter button {
  font-size: 20px;
  background: none;
  border: none;
  cursor: pointer;
}

/* ===================================
   10. Responsive Styles
   =================================== */

/* Desktop (769px+) */
@media (min-width: 769px) {
  /* Layout */
  .container,
  .container-wide {
    padding: 0 32px;
  }

  /* Header */
  .site-header {
    isolation: unset;
  }

  .header-left,
  .primary-nav {
    mix-blend-mode: difference;
  }

  .header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    margin-right: 40px;
  }

  .header-right .primary-nav ul {
    display: flex;
    flex-direction: row;
    gap: 24px;
  }

  .header-right .mobile-menu-toggle {
    display: none;
  }

  .header-lang {
    align-items: flex-end;
  }

  .primary-nav {
    display: flex !important;
  }

  /* Hero */
  .hero-heading {
    white-space: nowrap;
  }

  /* Manifesto Section */
  .manifesto-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .manifesto-section .container {
    width: 100%;
  }

  /* Heritage Section */
  .heritage-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('/wp-content/uploads/main/top_heritage_bg_pc.webp');
    background-size: cover;
    background-position: center;
  }

  .heritage-section .container-wide {
    width: 100%;
  }

  .heritage-content {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }

  .heritage-line {
    font-size: 60px !important;
    text-align: left;
  }

  /* About Section */
  .about-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
  }

  .about-section .container {
    width: 100%;
  }

  .about-content {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }

  .about-text {
    display: flex;
    flex-direction: column;
    align-items: start;
    text-align: left;
    font-size: 20px;
    color: #fff;
  }

  .about-text h2 {
    font-size: 71px;
    margin-bottom: 24px;
  }

  /* Commission Section */
  .commissions-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
  }

  .commissions-section .container {
    width: 100%;
  }

  .commissions-content {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }

  .commissions-text {
    display: flex;
    flex-direction: column;
    align-items: start;
    text-align: left;
    font-size: 20px;
    color: var(--color-dark-gray);
  }

  .commissions-text h2 {
    font-size: 71px;
    margin-bottom: 24px;
  }

  /* CTA links for desktop */
  .manifesto-section .cta-link,
  .about-text .cta-link,
  .commissions-text .cta-link {
    display: block;
    width: fit-content;
    margin-right: auto;
  }

  /* News Section */
  .news-text h2 {
    font-size: 71px;
    margin-top: 0px;
    margin-bottom: 24px;
    padding-top: 96px;
  }

  .news-section {
    gap: 96px;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  /* Layout */
  .container,
  .container-wide {
    padding: 0 24px;
  }

  /* Header */
  .site-header {
    isolation: unset;
  }

  .site-header .wrap {
    padding: 12px 16px;
    position: relative;
  }

  .header-left {
    isolation: unset;
  }

  .home .header-left {
    mix-blend-mode: difference;
  }

  .site-logo {
    font-size: 32px;
    margin-left: 16px;
    margin-top: 24px;
  }

  .lang-switcher {
    color: var(--color-gold);
    font-size: 13px;
    padding: 6px 10px;
    min-width: 28px;
  }

  .primary-nav {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: block !important;
    margin-left: auto;
    margin-top: 20px;
    margin-right: 20px;
  }

  header nav {
    display: none;
  }

  header .header-lang {
    display: block;
    position: absolute;
    right: 0;
    top: 52px;
    text-align: right;
    align-items: flex-end;
  }

  header .header-lang ul {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  header .header-lang li {
    list-style: none;
    position: relative;
  }

  header .header-lang li + li::before {
    content: '/';
    opacity: .6;
    margin: 0 8px;
  }

  header .header-lang a,
  header .header-lang span {
    font-size: 14px;
    color: rgba(0, 0, 0, .7);
    text-decoration: none;
  }

  header .header-lang li.current-lang::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #C3A264;
    margin-right: 6px;
    vertical-align: middle;
  }

  .home header .header-lang a,
  .home header .header-lang span,
  .front-page header .header-lang a,
  .front-page header .header-lang span {
    color: rgba(255, 255, 255, .9);
  }

  body {
    padding-top: 0;
  }

  /* Hero */
  .hero-subtitle {
    font-size: 18px;
  }

  /* CTA Links */
  .cta-link {
    margin-top: 80px;
  }

  /* Manifesto Section */
  .manifesto-section {
    padding: 64px 24px;
  }

  .manifesto-text {
    font-size: 40px;
    margin-inline: 0px;
  }

  /* Heritage Section */
  .heritage-section {
    background-image: url('/wp-content/uploads/main/top_heritage_bg_sp.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .heritage-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .japan-map {
    display: none;
  }

  .japan-map-mobile {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 12px auto 8px;
  }

  .heritage-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    gap: 12px;
    font-size: 20px;
    color: #fff;
  }

  .heritage-text h2 {
    font-size: 48px;
    text-align: center;
    font-family: 'Imbue', serif;
  }

  .heritage-line {
    text-align: center;
    font-size: 48px;
  }

  /* CTA link adjustments for mobile */
  .manifesto-section .cta-link,
  .heritage-text .cta-link,
  .about-text .cta-link,
  .cta-link {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-bottom: 120px;
  }

  .about-text p {
    font-size: 16px;
  }
  .commissions-text p {
    font-size: 16px;
  }
  .news-text p {
    font-size: 16px;
  }

  /* About and Commission Sections */
  .about-section,
  .commissions-section {
    width: 100vw;
  }

  .about-section img,
  .commissions-section img {
    max-width: 100%;
    height: auto;
  }

  .about-content,
  .commissions-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-img {
    display: none;
  }

  .about-img-mobile {
    display: block;
    max-width: 100%;
    height: auto;
  }

  .commissions-img {
    display: none;
  }

  .commissions-img-mobile {
    display: block;
    max-width: 100%;
    height: auto;
  }

  /* News and Blog Sections */
  .news-section {
    height: 30vh;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .blog-section {
    height: 30vh;
  }

  .blog-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .blog-item img {
    margin: 0 auto;
  }

  .btn-more {
    margin: 0 auto;
  }

  /* Carousel */
  .carousel-item img {
    height: 400px;
  }

  .meet-inami-gallery-section .carousel-controls {
    padding-inline: 0px !important;
    margin-top: 0px;
  }

  .meet-inami-gallery-section .carousel-btn {
    position: static;
    display: flex;
    transform: none;
    font-size: 0;
  }

  /* Footer */
  .site-footer-mobile {
    display: block;
    height: 100dvh;
    background-color: #000;
  }
  .footer-wrapper {
    background-image: url('/wp-content/uploads/main/footer.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 24px 24px;
    text-align: center;
    height: 85dvh;
  }

  .site-footer-desktop {
    display: none;
  }

  .footer-content {
    display: block;
    padding-top: 140px;
    text-align: center;
  }

  .footer-heading {
    color: #000;
    margin-bottom: 0px;
    padding-bottom: 0px;
    font-size: 70px;
    border: none;
    width: 100%;
    font-family: "IM FELL Great Primer", serif;
  }

  .footer-heading-content {
    margin-top: 0px;
  }

  .back-to-top-mobile {
    font-size: 24px;
  }

  .site-footer-mobile .footer-links a,
  .site-footer-mobile .footer-bottom-left a,
  .site-footer-mobile .footer-bottom-right a {
    color: #fff;
  }

  .site-footer-mobile .footer-bottom-right {
    justify-content: flex-start;
  }

  /* Manifesto Page Mobile */
  .manifesto-page .manifesto-hero {
    display: block;
    padding: 80px 20px 48px;
  }

  .manifesto-page .manifesto-title-group h1 {
    font-size: 36pt;
    margin-bottom: 24px;
    margin-left: 0px;
  }

  .manifesto-page .manifesto-content {
    display: block;
    padding-top: 0;
    padding-inline: 0;
    padding-bottom: 80px;
  }

  /* Privacy Policy Content - Mobile */
  .manifesto-page .privacy-policy-content {
    display: block;
    padding-top: 0;
    padding-inline: 0;
    padding-bottom: 80px;
  }

  .manifesto-page .manifesto-content-atom h3 {
    font-size: 30px;
  }

  .manifesto-page .manifesto-content-atom p {
    font-size: 16px;
  }

  .manifesto-page .manifesto-content-atom {
    margin-bottom: 56px;
  }

  /* Privacy Policy Content Atoms - Mobile */
  .manifesto-page .privacy-policy-content-atom .message {
    border: 1px solid var(--color-gold);
    padding-top: 48px;
    padding-bottom: 48px;
    padding-left: 32px;
    padding-right: 32px;
  }
  .manifesto-page .privacy-policy-content-atom h3 {
    font-size: 30px;
  }

  .manifesto-page .privacy-policy-content-atom p {
    font-size: 16px;
  }

  .manifesto-page .privacy-policy-content-atom {
    margin-bottom: 56px;
  }

  .manifesto-page .privacy-policy-content-atom ul {
    font-size: 16px;
  }
}

/* ===================================
   11. Contact Page Styles
   =================================== */

/* Contact Page */
.contact-page {
  background: #000;
  color: #fff;
  min-height: 100dvh;
}

.contact-page .contact-hero {
  display: block;
  align-items: center;
  margin: 0 auto;
  padding-top: 390px;
}

.contact-page .contact-title-group h1 {
  font-size: 90px;
  margin: 0 0 32px 80px;
  color: var(--color-gold);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: .02em;
}

.contact-page .contact-content {
  display: block;
  padding: 160px 80px 240px 80px;
}

/* Commissions Page */
.commissions-page {
  background: #000;
  color: #fff;
  min-height: 100dvh;
}

.commissions-page .commissions-hero {
  display: block;
  align-items: center;
  margin: 0 auto;
  padding-top: 120px;
}

.commissions-page .commissions-title-group h1 {
  font-size: 90px;
  margin: 0 0 32px 80px;
  color: var(--color-gold);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: .02em;
}

.commissions-hero .commissions-hero-copy {
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Libre Baskerville', serif;
}

.commissions-page .commissions-content {
  display: grid;
  grid-template-columns: 1fr 3fr;
  padding: 0 auto;
  gap: 0px;
}

.commissions-page .commissions-content > * {
  grid-column: 2;
}

.commissions-page .commissions-content section {
  padding-bottom: 100px;
  display: block;
}

.commissions-section-header {
  margin-bottom: 48px;
  text-align: left;
}

.commissions-section-header .main-title {
  font-size: 48px;
}

.commissions-section-header .sub-title {
  font-size: 36px;
}


.commissions-section-header h3 {
  font-size: 42px;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.commissions-section-header p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  font-family: 'Libre Baskerville', serif;
}

.commissions-insight-section,
.commissions-process-section {
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.commissions-process-list {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 160px 1fr;
}

.commissions-process-list > * {
  grid-column: 2;
}

.commissions-process-list h4 {
  font-size: 30px;
  color: var(--color-gold);
  border-bottom: 1px solid var(--color-gold);
  margin: 21px 0px;
}

.commissions-process-list p {
  font-size: 16px;
  color: #fff;
  font-family: 'Inter', serif;
}

.commissions-process-list li {
  border: 1px solid var(--color-gold);
  padding: 32px;
  background: rgba(8, 8, 8, 0.7);
  /* ensure items sit above the decorative line */
  position: relative;
  z-index: 1;
}

/* Decorative vertical line centered in the left column and a down-arrow at the bottom.
   Using a pseudo-element keeps markup unchanged and is simpler to maintain. */
.commissions-process-list::before {
  content: "";
  position: absolute;
  top: 0;
  /* center in the 160px left column */
  left: 80px;
  width: 2px;
  height: 100%;
  background: var(--color-gold);
  z-index: 0;
}

.commissions-process-list::after {
  content: "";
  position: absolute;
  /* same horizontal alignment as the line */
  left: 81px;
  bottom: -1px;
  width: 0;
  height: 0;
  /* simple triangle arrow pointing down */
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 14px solid var(--color-gold);
  transform: translateX(-50%);
  z-index: 0;
}
.commissions-process-section .commissions-working-with-us {
  display: flex;
  align-items: center;
  justify-content: center;
}
.commissions-process-section .commissions-working-with-us img {
  height: 320px;
}

.commissions-process-section .commissions-working-with-us-copy {
  font-size: 18px;
  color: #fff;
  padding: 42px 80px;
  border: 1px solid #fff;
  font-family: 'Libre Baskerville', serif;
}

/* Hide the decorative line/arrow on narrow screens where the layout stacks */
@media (max-width: 768px) {
  .commissions-process-list::before,
  .commissions-process-list::after {
    display: none;
  }
}

.commissions-process-list span {
  display: block;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.commissions-process-list p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 80px 100px 80px;
  background-color: #ECECEC;
  color: #000;
  text-align: left;
}

.contact-form-header {
  text-align: left;
  margin-bottom: 48px;
}

.contact-form-header h3 {
  font-size: 48px;
  margin-bottom: 16px;
  margin-top: 0;
  border: none !important;
}

.contact-form-header p {
  font-size: 18px;
  color: #000;
  font-family: 'Libre Baskerville', serif;
}

/* Commissions Form Section */
.commissions-form-section {

}
.commissions-form-body {
  margin: 0 auto;
  padding: 100px 80px 100px 80px;
  background-color: var(--color-gold);
  color: #000;
  text-align: left;
}

.commissions-form-header {
  text-align: left;
  margin-bottom: 48px;
}

.commissions-form-header h3 {
  font-size: 48px;
  margin-bottom: 16px;
  margin-top: 0;
  color: var(--color-gold);
  border: none !important;
}

.commissions-form-header p {
  font-size: 18px;
  color: #fff;
  font-family: 'Libre Baskerville', serif;
}

.commissions-form-body .submit-btn{
  background-color: #000;
  color: #fff;
}

/* Form Layout */
#contact-form {
  width: 100%;
}

.form-row {
  display: flex;
  gap: 24px;
  margin-bottom: 0;
}

.form-group {
  margin-bottom: 24px;
}

.form-group.half {
  flex: 1;
  margin-bottom: 24px;
}

/* Labels */
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 300;
  color: #000;
  font-size: 24px;
  font-family: "Imbue", serif;
}

.form-group .required {
  color: var(--color-gold);
}

/* Input Fields */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  font-size: 16px;
  font-family: 'Libre Baskerville', serif;
  background: rgba(255, 255, 255, 0.05);
  background-color: #fff;
  color: #000;
  transition: border-color 0.3s ease, background 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #ADAEBC;
}

/* Textarea */
.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

/* Select Box */
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%23C3A264" d="M6 9L1 4h10z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
}

.form-group select option {
  background: #000;
  color: #fff;
}

/* Submit Button */
.submit-btn {
  background-color: var(--color-gold);
  color: #000;
  padding: 16px 48px;
  border: none;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 400;
  font-family: var(--font-primary);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  width: 100%;
}

.submit-btn:hover {
  background-color: #d4b574;
}

.submit-btn:active {
  transform: translateY(1px);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Form Message */
.form-message {
  padding: 16px;
  border-radius: 4px;
  margin-top: 24px;
  text-align: center;
  font-weight: 400;
  font-family: 'Libre Baskerville', serif;
}

.form-message.success {
  background-color: rgba(39, 174, 96, 0.2);
  color: #27ae60;
  border: 1px solid rgba(39, 174, 96, 0.4);
}

.form-message.error {
  background-color: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.4);
}

/* Contact & Commissions Page Mobile */
@media (max-width: 768px) {
  .contact-page .contact-hero {
    display: block;
    padding: 390px 20px 48px;
  }

  .contact-page .contact-title-group h1 {
    font-size: 64px;
    margin-bottom: 24px;
    margin-left: 0px;
  }

  .contact-page .contact-content {
    display: block;
    padding-top: 160px;
    padding-inline: 0;
    padding-bottom: 80px;
  }

  .contact-form-section {
    padding: 24px;
  }

  .contact-form-header h3 {
    font-size: 28px;
  }

  .contact-form-header p {
    font-size: 16px;
  }

  .commissions-hero .commissions-hero-copy {
    margin: 0;
    font-size: 18px;
  }

  .commissions-insight-section,
  .commissions-process-section {
    padding: 64px 24px;
  }

  .commissions-insight-grid,
  .commissions-process-list {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .form-group.half {
    width: 100%;
  }

  .submit-btn {
    padding: 14px 32px;
    weight: 320px;
    height: 80px;
    font-size: 24px;
  }
}

/* ========================================
   CMS: News Archive & Single Pages
======================================== */

.archive-container,
.single-container {
  padding: var(--space-xl) var(--space-md);
  min-height: 60vh;
  background: #000;
}

.archive-container .container,
.single-container .container {
  margin: 0 auto;
}

.archive-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.archive-header h1 {
  font-family: var(--font-primary);
  font-size: 48px;
  font-weight: 400;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

/* Posts List (News) */
.posts-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.posts-list .post-card {
  display: flex;
  gap: var(--space-md);
  border: 1px solid var(--color-gold);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.posts-list .post-thumbnail {
  flex-shrink: 0;
  width: 300px;
}

.posts-list .post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Post Card */
.post-card {
  border: 1px solid var(--color-gold);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.post-card .post-content {
  padding: var(--space-md);
}

.post-title {
  margin-bottom: var(--space-xs);
  color: var(--color-gold)
}

.post-title a {
  color: var(--color-gold);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.post-title a:hover {
  color: var(--color-gold);
}

.post-meta {
  font-size: 14px;
  color: #999;
  margin-bottom: var(--space-sm);
}

.post-excerpt {
  color: #666;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.read-more {
  display: inline-block;
  color: var(--color-gold);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: var(--color-dark-gray);
}

/* Pagination */
.pagination {
  text-align: center;
  margin-top: var(--space-xl);
}

.pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.pagination a,
.pagination span {
  display: inline-block;
  padding: 10px 18px;
  background: var(--color-light-beige);
  color: var(--color-gold);
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.pagination a:hover {
  background: var(--color-gold);
  color: var(--color-white);
}

.pagination .current {
  background: var(--color-gold);
  color: var(--color-white);
}

.no-posts {
  text-align: center;
  color: #999;
  font-size: 18px;
  padding: var(--space-xl) 0;
}

/* ========================================
   Single Post Pages
======================================== */

.single-post {
  margin: 0 auto;
  padding: var(--space-xl);
  border-radius: 8px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.post-header {
  margin-bottom: var(--space-lg);
}

.post-header .post-title {
  font-family: var(--font-primary);
  font-size: 60px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: var(--space-md);
  color: var(--color-gold);
}

.post-header .post-meta {
  font-size: 16px;
  color: #999;
  margin-bottom: var(--space-md);
}

.featured-image {
  margin: var(--space-md) 0;
  border-radius: 8px;
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.single-post .post-content {
  font-size: 18px;
  line-height: 1.8;
  color: #fff;
}

.single-post .post-content h2 {
  font-size: 32px;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
  color: var(--color-gold);
}

.single-post .post-content h3 {
  font-size: 24px;
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
  color: var(--color-gold);
}

.single-post .post-content p {
  margin-bottom: var(--space-md);
}

.single-post .post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: var(--space-md) 0;
}

/* Post Footer / Navigation */
.post-footer {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid #eee;
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
}

.post-navigation .nav-card {
  flex: 1;
  padding: var(--space-md);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: #fff;
  font-size: 48px;
  line-height: 1.2;
}

.post-navigation .nav-card:not(.nav-card--disabled):hover {
  background: var(--color-gold);
  color: var(--color-white);
}

.post-navigation .nav-card-archive {
  text-align: center;
  background: var(--color-black);
  color: #fff;
}

.post-navigation .nav-card--disabled {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: not-allowed;
}

.nav-icon {
  width: 48px;
  height: auto;
  display: block;
}

.post-navigation .nav-card.nav-card-prev {
  justify-content: start;
}

.post-navigation .nav-card.nav-card-next {
  justify-content: end;
}

.nav-card-prev .nav-icon-left {
  width: 10px;
  margin-right: 20px;
}

.nav-card-next .nav-icon-right {
  width: 10px;
  margin-left: 20px;
}

.nav-subtitle {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 8px;
}

.nav-title {
  display: block;
  font-size: 48px;
  font-weight: 500;
}

/* ========================================
   CMS Responsive
======================================== */

@media (max-width: 768px) {
  .archive-header h1 {
    font-size: 36px;
  }

  .posts-list .post-card {
    flex-direction: column;
  }

  .posts-list .post-thumbnail {
    width: 100%;
    height: 250px;
  }

  .single-post {
    padding: var(--space-md);
  }

  .post-header .post-title {
    font-size: 32px;
  }

  .post-navigation {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .archive-header h1 {
    font-size: 28px;
  }

  .post-header .post-title {
    font-size: 26px;
  }

  .single-post .post-content {
    font-size: 16px;
  }
}
