/* ===== VARIABLES ===== */
:root {
  --gold: #C5A84B;
  --gold-light: #DFC07A;
  --gold-pale: #F2E8CC;
  --gold-dark: #8A6F2E;
  --stone: #2C2A25;
  --stone-mid: #5C5849;
  --stone-light: #9E9A8E;
  --cream: #FAF7F0;
  --white: #FEFDFB;
}

/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  background: var(--cream);
  color: var(--stone);
  overflow-x: hidden;
  cursor: none;
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease;
}
.cursor-ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.4s ease, width 0.3s, height 0.3s;
  transform: translate(-50%, -50%);
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 28px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(245, 243, 237, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-logo {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 100;
  font-size: 15px;
  letter-spacing: 0.35em;
  color: var(--stone);
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 32px;
  width: auto;
  min-height: 32px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--stone-mid);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active { color: var(--gold); }

/* ===== HERO ===== */
.hero {
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  background: var(--stone);
  display: flex;
  align-items: flex-end;
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}

.hero-left::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(197,168,75,0.15) 0%, transparent 70%);
  animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
}

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

.hero-eyebrow {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 100;
  font-size: 12px;
  letter-spacing: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 72px);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-desc {
  font-size: 15px;
  line-height: 2.2;
  color: var(--stone-light);
  max-width: 320px;
  opacity: 0;
  animation: fadeUp 1s ease 0.8s forwards;
  font-weight: 300;
}

.hero-cta {
  margin-top: 48px;
  display: flex;
  gap: 20px;
  opacity: 0;
  animation: fadeUp 1s ease 1s forwards;
}

.btn-primary {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
  background: var(--gold);
  padding: 16px 36px;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.btn-primary:hover::after { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }

.btn-outline {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone-light);
  border: 1px solid var(--stone-mid);
  padding: 16px 36px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-outline:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.hero-right {
  background: var(--gold-pale);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Hero Logo Image */
.hero-logo-wrap {
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  width: 80%;
  max-width: 640px;
}

.hero-logo-wrap img {
  width: 100%;
  height: auto;
  opacity: 0.9;
  animation: fadeIn 1.5s ease 0.5s both;
}

/* Geometric Stone Visual */
.stone-visual {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: float 12s ease-in-out infinite;
  z-index: 1;
}

@keyframes float {
  0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
  33% { transform: translate(-50%, -54%) rotate(1deg); }
  66% { transform: translate(-50%, -46%) rotate(-1deg); }
}

.hero-scroll {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}

.hero-scroll span {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--stone-light);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== CONCEPT ===== */
.concept {
  padding: 160px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
  background: var(--white);
}

.concept-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 180px;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1;
  position: absolute;
  top: -40px;
  left: -20px;
  z-index: 0;
}

.concept-left {
  position: relative;
}

.section-label {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 100;
  font-size: 12px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.3;
  color: var(--stone);
  position: relative;
  z-index: 1;
}

.section-title em {
  font-style: italic;
  color: var(--gold-dark);
}

.concept-body {
  font-size: 16px;
  line-height: 2.4;
  color: var(--stone-mid);
  font-weight: 300;
}

.concept-body p + p {
  margin-top: 20px;
}

/* ===== 7 DAYS ===== */
.days-section {
  padding: 120px 80px;
  background: var(--stone);
  position: relative;
  overflow: hidden;
}

.days-section::before {
  content: 'SEVENTH';
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 300px;
  font-weight: 300;
  color: rgba(255,255,255,0.02);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}

.days-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
}

.days-header .section-label { color: var(--gold); }
.days-header .section-title { color: var(--white); }

.days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.day-card {
  background: rgba(255,255,255,0.04);
  padding: 32px 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.4s;
}

.day-card:hover {
  background: rgba(197,168,75,0.12);
}

.day-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.day-card:hover::after { transform: scaleX(1); }

.day-jp {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--stone-light);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.day-stone {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.day-stone-en {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}

.day-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-bottom: 20px;
  position: relative;
}

.day-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
}

/* ===== PRODUCTS ===== */
.products {
  padding: 160px 80px;
  background: var(--cream);
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
}

.products-link {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: gap 0.3s;
}

.products-link:hover { gap: 20px; }
.products-link::after { content: '→'; }

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

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

.product-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.product-card:hover .product-img { transform: scale(1.04); }

.product-placeholder {
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.6s ease;
}

.product-card:hover .product-placeholder { transform: scale(1.04); }

.product-info {
  padding: 20px 0 0;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--stone);
  margin-bottom: 4px;
}

.product-price {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,42,37,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
  margin-bottom: calc(100% - (aspect-ratio: 3/4));
}

.product-card:hover .product-overlay { opacity: 1; }

.product-overlay-btn {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid var(--gold);
  padding: 14px 28px;
  text-decoration: none;
  transition: all 0.3s;
}

.product-overlay-btn:hover {
  background: var(--gold);
  color: var(--stone);
}

/* ===== INSTAGRAM ===== */
.instagram {
  padding: 120px 80px;
  background: var(--cream);
  text-align: center;
}

.instagram-header {
  margin-bottom: 60px;
}

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

.ig-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.ig-placeholder {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ig-item:hover .ig-placeholder { transform: scale(1.05); }

.ig-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,42,37,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.ig-item:hover .ig-overlay { opacity: 1; }

.ig-icon {
  color: white;
  font-size: 24px;
}

.ig-follow-btn {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--stone);
  border: 1px solid var(--stone);
  padding: 16px 48px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.ig-follow-btn:hover {
  background: var(--stone);
  color: var(--cream);
}

/* ===== PHILOSOPHY STRIP ===== */
.philosophy {
  padding: 100px 80px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.philosophy-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 44px);
  font-weight: 300;
  font-style: italic;
  color: var(--stone);
  text-align: center;
  line-height: 1.6;
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.philosophy::before, .philosophy::after {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 300px;
  font-weight: 300;
  color: rgba(44,42,37,0.08);
  position: absolute;
  line-height: 1;
}

.philosophy::before { top: -60px; left: 40px; }
.philosophy::after { bottom: -100px; right: 40px; content: '\201D'; }

/* ===== SHOP SECTION ===== */
.shop-section {
  padding: 160px 80px;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.shop-card {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.4s;
}

.shop-card-stores {
  background: var(--stone);
}

.shop-card-amazon {
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
}

.shop-card-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.shop-card-stores .shop-card-label { color: var(--gold); }
.shop-card-amazon .shop-card-label { color: var(--gold-dark); }

.shop-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  line-height: 1;
}

.shop-card-stores .shop-card-name { color: var(--white); }
.shop-card-amazon .shop-card-name { color: var(--stone); }

.shop-card-desc {
  font-size: 15px;
  line-height: 2;
  font-weight: 300;
  margin-top: 24px;
}

.shop-card-stores .shop-card-desc { color: var(--stone-light); }
.shop-card-amazon .shop-card-desc { color: var(--stone-mid); }

.shop-card-arrow {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: gap 0.3s;
  margin-top: 48px;
}

.shop-card:hover .shop-card-arrow { gap: 28px; }

.shop-card-stores .shop-card-arrow { color: var(--gold); }
.shop-card-amazon .shop-card-arrow { color: var(--gold-dark); }

.shop-card::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s;
}

.shop-card-stores::after { background: rgba(197,168,75,0.05); }
.shop-card-amazon::after { background: rgba(44,42,37,0.03); }
.shop-card:hover::after { opacity: 1; }

/* ===== FOOTER ===== */
footer {
  background: var(--stone);
  padding: 80px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 40px;
}

.footer-logo {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 100;
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--white);
  text-transform: uppercase;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--stone-light);
  margin-top: 8px;
}

.footer-nav {
  display: flex;
  gap: 60px;
}

.footer-nav-col h4 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-nav-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-col a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--stone-light);
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--stone-mid);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ===== MAGAZINE ===== */
.magazine {
  padding: 160px 80px;
  background: var(--white);
}

.magazine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 80px;
}

.article-card {
  text-decoration: none;
  display: block;
  transition: transform 0.4s;
}

.article-card:hover { transform: translateY(-8px); }

.article-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.article-thumb-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

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

.article-tag {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.article-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--stone);
  line-height: 1.5;
  margin-bottom: 8px;
}

.article-date {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--stone-light);
}

.article-link {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  transition: gap 0.3s;
}

.article-card:hover .article-link { gap: 16px; }
.article-link::after { content: '→'; }

/* ===== HAMBURGER MENU ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 110;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--stone);
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ===== RESPONSIVE: TABLET (768px) ===== */
@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }

  /* NAV */
  nav { padding: 20px 24px; mix-blend-mode: normal; background: #F5F3ED; backdrop-filter: none; }
  .nav-logo { position: relative; z-index: 110; }
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #F5F3ED;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    z-index: 105;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    font-size: 16px;
    letter-spacing: 0.3em;
    color: var(--stone);
    padding: 8px 16px;
  }
  .hamburger { z-index: 110; }

  /* HERO */
  .hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 100vh;
  }
  .hero { display: flex; flex-direction: column; }
  .hero-right {
    order: -1;
    min-height: auto;
    padding-top: 116px;
    padding-bottom: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-logo-wrap {
    position: static !important;
    transform: none !important;
    width: 320px;
  }
  .hero-left {
    order: 1;
    padding: 40px 24px 60px;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .hero-text { width: 100%; }
  .hero-desc { margin: 0 auto; }
  .hero-cta { justify-content: center; flex-wrap: wrap; }
  .stone-visual svg { width: 280px; height: 280px; }

  /* CONCEPT */
  .concept {
    grid-template-columns: 1fr;
    padding: 80px 32px;
    gap: 48px;
  }
  .concept-number { font-size: 120px; }

  /* 7 DAYS */
  .days-section { padding: 80px 24px; }
  .days-section > p.reveal { font-size: 13px !important; line-height: 2.2 !important; }
  .days-header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 48px; }
  .days-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
  }
  .day-card { padding: 20px 12px; }
  .day-dot { width: 28px; height: 28px; }

  /* PRODUCTS */
  .products { padding: 80px 32px; }
  .products-header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 48px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* INSTAGRAM */
  .instagram { padding: 80px 32px; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }

  /* PHILOSOPHY */
  .philosophy { padding: 60px 32px; }

  /* SHOP */
  .shop-section {
    grid-template-columns: 1fr;
    padding: 80px 32px;
    gap: 16px;
  }
  .shop-card { min-height: 280px; padding: 48px 32px; }
  .shop-card-name { font-size: 40px; }

  /* MAGAZINE */
  .magazine { padding: 80px 32px; }
  .magazine-grid { grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }

  /* FOOTER */
  footer { padding: 48px 32px; }
  .footer-top { flex-direction: column; gap: 40px; }
  .footer-nav { gap: 40px; }
}

/* ===== RESPONSIVE: MOBILE (480px) ===== */
@media (max-width: 480px) {
  .hero-left { padding: 48px 16px 48px; width: 100%; }
  .hero-title { font-size: 36px; }
  .hero-desc { font-size: 12px; }
  .hero-right { height: 40vh; min-height: 260px; }
  .hero-logo-wrap { width: 240px; }
  .stone-visual svg { width: 200px; height: 200px; }
  .btn-primary, .btn-outline { padding: 14px 24px; font-size: 10px; }
  .hero-cta { gap: 12px; }

  .concept { padding: 60px 20px; gap: 32px; }
  .concept-number { font-size: 80px; }
  .section-title { font-size: 28px; }
  .concept-body { font-size: 13px; line-height: 2.2; }

  .days-section { padding: 60px 16px; }
  .days-section > p.reveal { font-size: 12px !important; line-height: 2.0 !important; }
  .days-grid { grid-template-columns: repeat(2, 1fr); }
  .day-stone { font-size: 14px; }

  .products { padding: 60px 20px; }
  .products-grid { grid-template-columns: 1fr; gap: 32px; }

  .instagram { padding: 60px 20px; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .ig-follow-btn { padding: 14px 32px; font-size: 10px; }

  .philosophy { padding: 48px 20px; }

  .shop-section { padding: 60px 20px; }
  .shop-card { min-height: 240px; padding: 36px 24px; }
  .shop-card-name { font-size: 32px; }

  .magazine { padding: 60px 20px; }
  .magazine-grid { grid-template-columns: 1fr; }
  .article-title { font-size: 18px; }

  footer { padding: 36px 20px; }
  .footer-nav { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ===== PAGE-SPECIFIC: ABOUT ===== */
/* Body cursor override for pages without custom cursor */
.page-about { cursor: auto; }
.page-about .cursor, .page-about .cursor-ring { display: none; }

/* PAGE HERO (About) */
.page-hero {
  padding: 160px 80px 100px;
  background: var(--stone);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: 'ABOUT';
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 250px;
  font-weight: 300;
  color: rgba(255,255,255,0.03);
  bottom: -40px;
  right: 40px;
  white-space: nowrap;
  pointer-events: none;
}
.page-hero-label {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 100;
  font-size: 12px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.05;
  color: var(--white);
}
.page-hero-title em { font-style: italic; color: var(--gold-light); }

/* STORY (About) */
.story { padding: 120px 80px; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
  margin-bottom: 100px;
}
.story-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: -20px;
}
.story-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.3;
  color: var(--stone);
  margin-bottom: 32px;
}
.story-title em { font-style: italic; color: var(--gold-dark); }
.story-body {
  font-size: 16px;
  line-height: 2.4;
  color: var(--stone-mid);
  font-weight: 300;
}
.story-body p + p { margin-top: 20px; }

/* VALUES (About) */
.values { padding: 100px 80px; background: var(--white); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 80px;
}
.value-card {
  padding: 60px 40px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}
.value-card:hover { background: var(--gold-pale); }
.value-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 300;
  color: rgba(197,168,75,0.2);
  line-height: 1;
  margin-bottom: 24px;
}
.value-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--stone);
  margin-bottom: 16px;
}
.value-body {
  font-size: 15px;
  line-height: 2.2;
  color: var(--stone-mid);
  font-weight: 300;
}

/* QUOTE (About) */
.quote-section {
  padding: 120px 80px;
  background: var(--gold);
  text-align: center;
}
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  font-style: italic;
  color: var(--stone);
  line-height: 1.6;
  max-width: 860px;
  margin: 0 auto;
}

/* RESPONSIVE: About page (768px) */
@media (max-width: 768px) {
  .page-hero { padding: 120px 32px 60px; }
  .story { padding: 60px 24px; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; margin-bottom: 60px; }
  .values { padding: 60px 24px; }
  .values-grid { grid-template-columns: 1fr; }
  .quote-section { padding: 80px 24px; }
}

/* RESPONSIVE: About page (480px) */
@media (max-width: 480px) {
  .page-hero { padding: 100px 20px 48px; }
  .story { padding: 40px 20px; }
  .values { padding: 40px 20px; }
  .value-card { padding: 40px 24px; }
}
