/*
Theme Name: TAKAJAPAN
Theme URI: https://takajapan.com/
Author: TAKAJAPAN
Author URI: https://takajapan.com/
Description: TAKAJAPANの公式WordPressテーマ。オーラ鑑定士貴が運営するサイト用のカスタムテーマです。
Tags: one-column, custom-logo, custom-menu, featured-images, translation-ready, blog, portfolio
Version: 1.0.0
Requires at least: 5.2
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v3 or Later
License URI: https://www.gnu.org/licenses/gpl.html
Text Domain: takajapan
*/

/* ===================================
   CSS Variables
   =================================== */
:root {
  /* Colors */
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-gray: #374151;
  --color-gray-light: #D1D5DB;
  --color-gray-medium: #969696;
  --color-accent: rgba(221, 221, 221, 0.26);

  /* Fonts */
  --font-inter: 'Inter', sans-serif;
  --font-zen-antique: 'Zen Antique', serif;
  --font-zen-kaku: 'Zen Kaku Gothic New', sans-serif;

  /* Spacing */
  --content-padding: 96px;
  --section-gap: 80px;

  /* Layout */
  --max-width: 1358px;
  --header-height: 76px;
}

/* ===================================
   Reset & Base Styles
   =================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-inter);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-black);
  background-color: var(--color-white);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

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

/* ===================================
   Header
   =================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 27px;
  z-index: 1000;
}

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

.header-nav {
  display: flex;
  align-items: center;
  gap: 50px;
}

.header-nav a {
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.43;
  color: var(--color-black);
  transition: opacity 0.3s ease;
}

.header-nav a:hover {
  opacity: 0.7;
}

/* WordPress Menu Support */
.header-nav ul {
  display: flex;
  align-items: center;
  gap: 50px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav li {
  margin: 0;
  padding: 0;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
  position: relative;
  height: 822px;
  margin-top: var(--header-height);
  background-image: url('images/hero-bg-366e26.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-title {
  font-family: var(--font-zen-antique);
  font-weight: 400;
  font-size: 80px;
  line-height: 1.45;
  color: var(--color-white);
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  will-change: opacity, transform;
  transition: opacity 0.1s ease-out;
}

/* ===================================
   Main Content
   =================================== */
.main-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
}

.section-line {
  border: none;
  border-top: 1px solid var(--color-black);
  margin: 0;
  margin-bottom: 40px;
}

.section-title {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--color-black);
  margin-bottom: 32px;
}

/* ===================================
   About/Works Section
   =================================== */
.about-works {
  position: relative;
  padding: 0;
}

.about-works-bg {
  position: absolute;
  top: 0;
  left: -100vw;
  right: -100vw;
  height: 638px;
  background-color: rgba(209, 233, 175, 0.5);
  z-index: -1;
}

.about-works-content {
  padding: 87px 0 60px;
}

.about-works-header {
  display: grid;
  grid-template-columns: 1fr 560px;
  gap: 60px;
  margin-bottom: 150px;
}

.about-works-title {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-black);
  margin-bottom: 100px;
}

.about-works-description {
  font-family: var(--font-zen-kaku);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: var(--color-gray);
  max-width: 614px;
}

.about-works-signature {
  font-family: var(--font-zen-kaku);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: var(--color-black);
  margin-top: 48px;
  margin-left: 546px;
}

.about-works-image img {
  width: 560px;
  height: 418px;
  object-fit: cover;
}

.about-works-gallery {
  margin-top: 80px;
}

.about-works-gallery-title {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-black);
  margin-bottom: 40px;
}

.about-works-slider {
  overflow: hidden;
  width: 100%;
}

.about-works-slider-track {
  display: flex;
  gap: 32px;
  transition: transform 0.5s ease;
}

.about-works-slider-track img {
  width: 267px;
  height: 267px;
  object-fit: cover;
  flex-shrink: 0;
}

.about-works-nav {
  display: flex;
  gap: 8px;
  margin-top: 36px;
}

.about-works-nav-btn {
  width: 38px;
  height: 38px;
  border: 1px solid var(--color-black);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.about-works-nav-btn:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}

/* ===================================
   Voice Section
   =================================== */
.voice {
  padding: var(--section-gap) 0;
}

.voice-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.voice-item {
  padding: 24px 0;
}

.voice-text {
  font-family: var(--font-inter);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.0625em;
  color: var(--color-black);
}

.voice-divider {
  border: none;
  border-top: 1px solid var(--color-gray-light);
  margin: 0;
}

/* ===================================
   Aura Section
   =================================== */
.aura {
  padding: var(--section-gap) 0;
}

.aura-description {
  font-family: var(--font-zen-kaku);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-gray);
  max-width: 900px;
  margin-bottom: 48px;
}

.aura-colors {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.aura-color-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-black);
  overflow: hidden;
}

.aura-color-image {
  width: 100%;
  aspect-ratio: 520 / 382;
  overflow: hidden;
}

.aura-color-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.aura-color-card:hover .aura-color-image img {
  transform: scale(1.05);
}

.aura-color-info {
  padding: 20px;
  flex-grow: 1;
  border-top: 1px solid var(--color-black);
}

.aura-color-title {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.025em;
  color: var(--color-black);
  margin-bottom: 12px;
}

.aura-color-text {
  font-family: var(--font-inter);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-gray);
}

/* ===================================
   Reservation Section
   =================================== */
.reservation {
  padding: var(--section-gap) 0;
}

.reservation-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.reservation-card {
  border: 1px solid var(--color-black);
  overflow: hidden;
}

.reservation-card-image {
  height: 280px;
  overflow: hidden;
}

.reservation-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #f5f5f5;
  transition: transform 0.3s ease;
}

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

.reservation-card-content {
  padding: 24px;
}

.reservation-card-label {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--color-black);
  display: block;
  margin-bottom: 4px;
}

.reservation-card-type {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 12px;
  color: var(--color-black);
  display: block;
  margin-bottom: 4px;
}

.reservation-card-price {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-black);
  display: block;
}

.reservation-card-line {
  border: none;
  border-top: 1px solid var(--color-gray-light);
  margin: 16px 0;
}

.reservation-card-title {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-black);
  margin-bottom: 16px;
}

.reservation-card-btn {
  display: block;
  width: 100%;
  padding: 12px;
  border: 1px solid var(--color-black);
  text-align: center;
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-black);
  transition: all 0.3s ease;
}

.reservation-card-btn:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}

/* ===================================
   Sites Section
   =================================== */
.sites {
  padding: var(--section-gap) 0;
}

.sites-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.site-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--color-black);
  min-height: 140px;
  transition: background-color 0.3s ease;
}

.site-card:hover {
  background-color: var(--color-accent);
}

.site-card-title {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-black);
}

.site-card-link {
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-black);
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-card-link .arrow {
  transition: transform 0.3s ease;
}

.site-card:hover .site-card-link .arrow {
  transform: translateX(4px);
}

/* ===================================
   Profile Section
   =================================== */
.profile {
  padding: var(--section-gap) 0;
}

.profile-subtitle {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: var(--color-black);
  margin-bottom: 16px;
}

.profile-bio {
  font-family: var(--font-zen-kaku);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-gray);
}

/* 上段: Biography + 画像 */
.profile-biography-row {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}

.profile-biography-text {
  padding-right: 24px;
}

.profile-biography-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* 中段: Creative Disciplines */
.profile-disciplines-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  margin-bottom: 48px;
  margin-top: -16px;
}

.profile-disciplines-row .disciplines {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.profile-disciplines-row .discipline {
  padding-left: 16px;
  border-left: 3px solid var(--color-black);
}

.disciplines-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.discipline-title {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: var(--color-black);
  margin-bottom: 8px;
}

.discipline-text {
  font-family: var(--font-inter);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-gray);
}

/* 下段: Timeline + 画像3枚 横並び */
.profile-bottom-row {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 48px;
  align-items: stretch;
}

.profile-images-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  height: 100%;
  overflow: hidden;
  min-width: 0;
}

.profile-images-squares {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  min-width: 0;
}

.profile-img-square {
  width: 100%;
  flex: 1;
  object-fit: contain;
  max-width: 100%;
  background-color: #f5f5f5;
}

.profile-img-tall {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 100%;
  background-color: #f5f5f5;
}

/* Timeline */
.profile-timeline {
  position: relative;
  background-color: var(--color-white);
  padding: 32px;
}

.timeline-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(221, 221, 221, 0.26);
  z-index: -1;
}

.timeline-title {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: var(--color-black);
  margin-bottom: 24px;
}

.timeline-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.timeline-item {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-gray-light);
}

.timeline-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.timeline-year {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-black);
  display: block;
  margin-bottom: 8px;
}

.timeline-heading {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-black);
  margin-bottom: 4px;
}

.timeline-text {
  font-family: var(--font-inter);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-gray);
}

/* ===================================
   Footer
   =================================== */
.footer {
  background-color: var(--color-white);
  border-top: 2px solid var(--color-black);
  padding: 48px var(--content-padding);
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.footer-logo {
  display: flex;
  align-items: flex-start;
}

.footer-nav {
  display: contents;
}

.footer-nav-title {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: var(--color-black);
  margin-bottom: 16px;
}

.footer-nav-links li {
  margin-bottom: 8px;
}

.footer-nav-links a,
.footer-nav-links li {
  font-family: var(--font-inter);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-gray);
  transition: color 0.3s ease;
}

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

.footer-logo img {
  height: 60px;
  width: auto;
}

.footer-line {
  border: none;
  border-top: 1px solid var(--color-black);
  margin: 0 auto 24px;
  max-width: var(--max-width);
}

.footer-copyright {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-gray);
  text-align: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ===================================
   Scroll Animations
   =================================== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation delays for grid items */
.fade-up-stagger > *:nth-child(1) { transition-delay: 0s; }
.fade-up-stagger > *:nth-child(2) { transition-delay: 0.1s; }
.fade-up-stagger > *:nth-child(3) { transition-delay: 0.2s; }
.fade-up-stagger > *:nth-child(4) { transition-delay: 0.3s; }

/* ===================================
   WordPress Specific Styles
   =================================== */

/* Blog/Archive Page Styles */
.blog-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-gap) var(--content-padding);
  margin-top: var(--header-height);
}

.blog-title {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 32px;
  color: var(--color-black);
  margin-bottom: 48px;
}

.post-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.post-item {
  padding-bottom: 48px;
  border-bottom: 1px solid var(--color-gray-light);
}

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

.post-item-title {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-black);
  margin-bottom: 16px;
}

.post-item-title a {
  color: inherit;
  transition: opacity 0.3s ease;
}

.post-item-title a:hover {
  opacity: 0.7;
}

.post-item-meta {
  font-family: var(--font-inter);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-gray-medium);
  margin-bottom: 16px;
}

.post-item-excerpt {
  font-family: var(--font-inter);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-gray);
}

.post-item-thumbnail {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 24px;
}

/* Single Post Styles */
.single-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--section-gap) var(--content-padding);
  margin-top: var(--header-height);
}

.single-title {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 36px;
  color: var(--color-black);
  margin-bottom: 24px;
}

.single-meta {
  font-family: var(--font-inter);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-gray-medium);
  margin-bottom: 48px;
}

.single-featured-image {
  width: 100%;
  height: auto;
  margin-bottom: 48px;
}

.single-body {
  font-family: var(--font-inter);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-gray);
}

.single-body h2 {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 28px;
  color: var(--color-black);
  margin: 48px 0 24px;
}

.single-body h3 {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 22px;
  color: var(--color-black);
  margin: 36px 0 16px;
}

.single-body p {
  margin-bottom: 24px;
}

.single-body ul,
.single-body ol {
  margin: 24px 0;
  padding-left: 24px;
}

.single-body li {
  margin-bottom: 8px;
}

.single-body img {
  max-width: 100%;
  height: auto;
  margin: 24px 0;
}

.single-body a {
  color: var(--color-black);
  text-decoration: underline;
}

.single-body a:hover {
  opacity: 0.7;
}

/* Page Styles */
.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--section-gap) var(--content-padding);
  margin-top: var(--header-height);
}

.page-title {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 36px;
  color: var(--color-black);
  margin-bottom: 48px;
}

.page-body {
  font-family: var(--font-inter);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-gray);
}

/* 404 Page Styles */
.error-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-gap) var(--content-padding);
  margin-top: var(--header-height);
  text-align: center;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.error-title {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 120px;
  color: var(--color-black);
  margin-bottom: 24px;
}

.error-subtitle {
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 24px;
  color: var(--color-black);
  margin-bottom: 16px;
}

.error-text {
  font-family: var(--font-inter);
  font-weight: 300;
  font-size: 16px;
  color: var(--color-gray);
  margin-bottom: 32px;
}

.error-link {
  display: inline-block;
  padding: 16px 32px;
  border: 1px solid var(--color-black);
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-black);
  transition: all 0.3s ease;
}

.error-link:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}

/* Search Results Styles */
.search-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-gap) var(--content-padding);
  margin-top: var(--header-height);
}

.search-title {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 32px;
  color: var(--color-black);
  margin-bottom: 48px;
}

.search-form-wrapper {
  margin-bottom: 48px;
}

.search-form-wrapper input[type="search"] {
  width: 100%;
  max-width: 400px;
  padding: 16px;
  border: 1px solid var(--color-gray-light);
  font-family: var(--font-inter);
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.search-form-wrapper input[type="search"]:focus {
  outline: none;
  border-color: var(--color-black);
}

.search-form-wrapper button {
  padding: 16px 32px;
  border: 1px solid var(--color-black);
  background: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-form-wrapper button:hover {
  background: var(--color-white);
  color: var(--color-black);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-gray-light);
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-black);
  transition: all 0.3s ease;
}

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

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

/* Screen Reader Text */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f7f7f7;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: var(--color-black);
  display: block;
  font-size: 14px;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Skip Link */
.skip-link {
  left: -9999rem;
  top: 2.5rem;
  z-index: 999999999;
  text-decoration: underline;
}

.skip-link:focus {
  display: block;
  left: 6px;
  top: 7px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  line-height: normal;
  padding: 15px 23px 14px;
  z-index: 100000;
  right: auto;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1400px) {
  :root {
    --content-padding: 60px;
  }
}

@media (max-width: 1200px) {
  .hero-title {
    font-size: 60px;
  }

  .about-works-header {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-works-image img {
    width: 100%;
    height: auto;
  }

  .about-works-signature {
    margin-left: 0;
    text-align: right;
  }

  .about-works-slider-track img {
    width: 200px;
    height: 200px;
  }

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

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

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

  .profile-biography-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .profile-biography-text {
    padding-right: 0;
  }

  .profile-bottom-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .profile-timeline {
    order: 1;
  }

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

@media (max-width: 768px) {
  :root {
    --content-padding: 24px;
    --section-gap: 48px;
    --header-height: 60px;
  }

  .header-nav {
    display: none;
  }

  .hero {
    height: 500px;
  }

  .hero-title {
    font-size: 36px;
    padding: 0 24px;
  }

  .reservation-cards,
  .sites-grid,
  .aura-colors {
    grid-template-columns: 1fr;
  }

  .profile-images-bottom {
    grid-template-columns: 1fr;
  }

  .profile-img-tall {
    height: 300px;
  }

  .disciplines-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .footer-logo {
    order: -1;
  }

  .section-title {
    font-size: 20px;
  }

  .about-works-bg {
    height: 400px;
  }

  .about-works-title {
    margin-bottom: 40px;
  }

  .about-works-description {
    font-size: 16px;
  }

  .about-works-slider-track img {
    width: 150px;
    height: 150px;
  }

  /* WordPress Pages Mobile */
  .blog-title,
  .single-title,
  .page-title,
  .search-title {
    font-size: 28px;
  }

  .error-title {
    font-size: 80px;
  }

  .single-body {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .error-title {
    font-size: 60px;
  }
}

/* ===================================
   Shop Page
   =================================== */
.shop-page {
  padding: var(--header-height) var(--content-padding) 0;
  max-width: var(--max-width);
  margin: 0 auto;
}

.shop-header {
  padding: var(--section-gap) 0 48px;
  text-align: center;
}

.shop-header .section-line {
  margin-bottom: 32px;
}

.shop-header-sub {
  font-family: var(--font-zen-kaku);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-gray-medium);
  margin-top: 12px;
  letter-spacing: 0.1em;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.article-card-image {
  position: relative;
  overflow: hidden;
}

.article-card-image img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  display: block;
  background-color: #f5f5f5;
}

.shop-grid .reservation-card {
  display: flex;
  flex-direction: column;
}

.shop-grid .reservation-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.shop-grid .reservation-card-btn {
  margin-top: auto;
}

.shop-pagination {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.shop-no-products {
  text-align: center;
  font-family: var(--font-zen-kaku);
  font-size: 16px;
  color: var(--color-gray-medium);
  padding: 80px 0;
}

.shop-back-link {
  text-align: center;
  margin: 64px 0;
}

.reservation-shop-link {
  text-align: center;
  margin-top: 48px;
}

.reservation-shop-btn {
  display: inline-block;
  padding: 14px 48px;
  border: 1px solid var(--color-black);
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-black);
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
}

.reservation-shop-btn:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}

@media (max-width: 768px) {
  .shop-page {
    padding-left: 24px;
    padding-right: 24px;
  }

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