/* ============================================================
   ShimaDreamHome — Main Stylesheet
   css/style.css
============================================================ */

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

:root {
  --cream: #f9f5ef;
  --warm-white: #fdfaf6;
  --clay: #c4856a;
  --terracotta: #b86b4f;
  --sand: #d9c9b0;
  --stone: #8a7e72;
  --deep: #2e2620;
  --accent: #9b7b5a;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--cream);
  color: var(--deep);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: 0.6;
}

/* ── HEADER ── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 3rem;
  background: rgba(249, 245, 239, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 133, 106, 0.15);
  animation: fadeDown 0.8s ease both;
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--deep);
  text-decoration: none;
}

.logo span { color: var(--clay); font-style: italic; }

nav { display: flex; gap: 2.2rem; }
nav a {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  text-decoration: none;
  transition: color 0.25s;
}
nav a:hover { color: var(--terracotta); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 5rem;
}

.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem 4rem 6rem 6rem;
  animation: fadeLeft 1s ease 0.3s both;
}

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

.eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1.6rem;
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--deep);
  margin-bottom: 1.8rem;
}

h1 em { font-style: italic; color: var(--terracotta); }

.hero-desc {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--stone);
  max-width: 380px;
  margin-bottom: 2.8rem;
}

.cta-group { display: flex; align-items: center; gap: 1.8rem; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--clay);
  color: #fff;
  padding: 0.85rem 2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: none; cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--terracotta); transform: translateY(-2px); }

.btn-secondary {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--deep);
  text-decoration: none;
  border-bottom: 1px solid var(--sand);
  padding-bottom: 2px;
  transition: border-color 0.25s, color 0.25s;
}
.btn-secondary:hover { color: var(--terracotta); border-color: var(--terracotta); }

/* ── HERO MOSAIC ── */
.hero-right {
  position: relative;
  overflow: hidden;
  animation: fadeRight 1s ease 0.5s both;
}

@keyframes fadeRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

.mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  height: 100%;
  gap: 4px;
  padding: 1.5rem 1.5rem 1.5rem 0;
}

.mosaic-item {
  overflow: hidden;
  position: relative;
}

.mosaic-item:first-child { grid-row: 1 / 3; }

.mosaic-item img, .mosaic-placeholder {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.mosaic-item:hover img,
.mosaic-item:hover .mosaic-placeholder { transform: scale(1.04); }

.mosaic-placeholder {
  display: flex; align-items: center; justify-content: center;
}

/* Fallback gradient colours (shown when no image is added yet) */
.p1 { background: linear-gradient(145deg, #d4b896, #c09070, #a07050); }
.p2 { background: linear-gradient(145deg, #e8ddd0, #d4c4b0, #c0b090); }
.p3 { background: linear-gradient(135deg, #c8b8a0, #b09878, #988060); }
.p4 { background: linear-gradient(160deg, #ddd0c0, #c8b8a8, #b4a090); }
.p5 { background: linear-gradient(120deg, #e0d4c4, #ccc0b0, #b8a898); }

.room-label {
  position: absolute; bottom: 0.8rem; left: 0.9rem;
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(46, 38, 32, 0.35);
  backdrop-filter: blur(4px);
  padding: 0.3rem 0.6rem;
}

.room-icon {
  font-size: 2.5rem;
  opacity: 0.3;
  user-select: none;
}

/* ── DIVIDER ── */
.divider {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 3rem 6rem;
}
.divider-line { flex: 1; height: 1px; background: var(--sand); }
.divider-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--stone);
  white-space: nowrap;
}

/* ── ABOUT ── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 4rem 6rem 6rem;
}

.about-text { padding-right: 5rem; }

.section-label {
  font-size: 0.66rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1.4rem;
}

.about-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.about-text h2 em { font-style: italic; color: var(--terracotta); }

.about-text p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--stone);
  margin-bottom: 1.2rem;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--clay);
  line-height: 1;
}

.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 0.4rem;
}

.about-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}

.about-card {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

.float-badge {
  position: absolute;
  bottom: -1.5rem; left: -1.5rem;
  background: var(--warm-white);
  border: 1px solid var(--sand);
  padding: 1.2rem 1.6rem;
  max-width: 200px;
}

.float-badge p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--deep);
  line-height: 1.5;
}

.float-badge span {
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  display: block;
  margin-top: 0.5rem;
}

/* ── GALLERY STRIP ── */
.gallery-section { padding: 5rem 0; }

.gallery-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  padding: 0 6rem 2.5rem;
}

.gallery-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
}

.gallery-header h2 em { font-style: italic; color: var(--terracotta); }

.gallery-scroll {
  display: flex; gap: 1rem;
  padding: 0 6rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.gallery-scroll::-webkit-scrollbar { display: none; }

.gallery-tile {
  flex: 0 0 280px;
  height: 380px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-tile:hover img { transform: scale(1.04); }

.gallery-tile .mosaic-placeholder { height: 100%; }
.g1 { background: linear-gradient(155deg, #d4c0a8, #c0a888, #a89070); }
.g2 { background: linear-gradient(130deg, #c8b0a0, #b09888, #988070); }
.g3 { background: linear-gradient(170deg, #ddd0c0, #c8b8a8, #b0a090); }
.g4 { background: linear-gradient(140deg, #c0a890, #a89078, #907860); }
.g5 { background: linear-gradient(125deg, #d8c8b0, #c4b098, #b09880); }
.g6 { background: linear-gradient(150deg, #ccc0b0, #b8a898, #a49080); }

.tile-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem 1.2rem 1rem;
  background: linear-gradient(to top, rgba(46,38,32,0.6), transparent);
  color: white;
  transform: translateY(8px);
  opacity: 0;
  transition: all 0.35s ease;
}

.gallery-tile:hover .tile-caption { transform: translateY(0); opacity: 1; }

.tile-caption h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
}
.tile-caption p {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 0.25rem;
}

/* ── SHOP / AFFILIATE SECTION ── */
.shop-section {
  padding: 6rem 6rem;
  background: var(--warm-white);
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}

.shop-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 3rem;
  position: relative;
  z-index: 10;
}

.shop-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
}

.shop-header h2 em { font-style: italic; color: var(--terracotta); }

.shop-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.2rem;
}

.shop-header p {
  font-size: 0.8rem;
  color: var(--stone);
  max-width: 320px;
  text-align: right;
  line-height: 1.7;
}

/* ── COLLABORATE BUTTON & POPOVER ── */
.collab-wrap {
  position: relative;
}

.collab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: transparent;
  border: 1px solid var(--clay);
  color: var(--clay);
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.7rem 1.3rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.collab-btn:hover,
.collab-btn.active {
  background: var(--clay);
  color: white;
}

.collab-popover {
  position: absolute;
  top: calc(100% + 0.7rem);
  right: 0;
  width: 320px;
  background: var(--cream);
  border: 1px solid var(--sand);
  box-shadow: 0 12px 40px rgba(46, 38, 32, 0.13);
  padding: 1.8rem;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  pointer-events: none;
}

.collab-popover.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.collab-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--stone);
  padding: 0.2rem;
  display: flex;
  transition: color 0.2s;
}

.collab-close:hover { color: var(--deep); }

.collab-eyebrow {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 0.6rem;
}

.collab-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--deep);
  line-height: 1.25;
  margin-bottom: 0.9rem;
}

.collab-body {
  font-size: 0.76rem;
  color: var(--stone);
  line-height: 1.75;
  margin-bottom: 1.3rem;
}

.collab-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--deep);
  text-decoration: none;
  border-bottom: 1px solid var(--clay);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.collab-email:hover {
  color: var(--terracotta);
  border-color: var(--terracotta);
}

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

.brand-card {
  background: var(--cream);
  border: 1px solid var(--sand);
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(46, 38, 32, 0.1);
}

.brand-img {
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}

.brand-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.brand-img .mosaic-placeholder { height: 100%; }

.b1 { background: linear-gradient(145deg, #e8ddd2, #d4c4b4, #c0b0a0); }
.b2 { background: linear-gradient(145deg, #dde8e0, #c4d4c8, #a8c0b0); }
.b3 { background: linear-gradient(145deg, #e8e4d8, #d4cfc0, #c0baa8); }
.b4 { background: linear-gradient(145deg, #ecddd4, #d8c4b8, #c4a898); }

.brand-tag {
  position: absolute; top: 0.8rem; right: 0.8rem;
  background: var(--clay);
  color: white;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.28rem 0.6rem;
}

.brand-featured {
  position: absolute; bottom: 0.8rem; left: 0.8rem;
  background: rgba(249, 245, 239, 0.92);
  color: var(--terracotta);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.22rem 0.55rem;
  border: 1px solid rgba(184, 107, 79, 0.3);
  font-family: 'Jost', sans-serif;
}

.brand-body {
  padding: 1.3rem 1.4rem 1.5rem;
  display: flex; flex-direction: column; flex: 1;
}

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 0.3rem;
}

.brand-category {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 0.8rem;
}

.brand-desc {
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--stone);
  flex: 1;
  margin-bottom: 1.2rem;
}

.brand-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--deep);
  text-decoration: none;
  border-bottom: 1px solid var(--sand);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: color 0.2s, border-color 0.2s;
}

.brand-link:hover { color: var(--terracotta); border-color: var(--terracotta); }

/* ── LTK CALLOUT BANNER ── */
.ltk-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--deep);
  padding: 2.2rem 2.8rem;
  margin-bottom: 3rem;
}

.ltk-callout-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.ltk-logo-mark {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--clay);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ltk-logo-mark span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.04em;
  font-style: italic;
}

.ltk-callout-text p.section-label {
  color: var(--sand);
  opacity: 0.7;
  margin-bottom: 0.3rem;
}

.ltk-callout-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 0.4rem;
}

.ltk-callout-text h3 em {
  font-style: italic;
  color: var(--clay);
}

.ltk-callout-text p.ltk-sub {
  font-size: 0.75rem;
  color: var(--sand);
  opacity: 0.7;
  line-height: 1.6;
  max-width: 380px;
}

.ltk-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--clay);
  color: white;
  text-decoration: none;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.9rem 1.8rem;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.ltk-btn:hover { background: var(--terracotta); }

/* ── BRAND CODE BADGE ── */
.brand-code {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.55rem 0.8rem;
  background: #fdf7f2;
  border: 1px dashed var(--sand);
}

.code-label {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
}

.code-pill {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  font-weight: 400;
  color: var(--terracotta);
  background: rgba(184, 107, 79, 0.1);
  border: 1px solid rgba(184, 107, 79, 0.25);
  padding: 0.18rem 0.55rem;
  font-family: 'Courier New', monospace;
}

.code-save {
  margin-left: auto;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clay);
  font-style: italic;
}

.affiliate-note {
  margin-top: 2.5rem;
  padding: 1rem 1.4rem;
  border-left: 2px solid var(--sand);
  display: flex; align-items: center; gap: 0.8rem;
}

.affiliate-note p {
  font-size: 0.72rem;
  color: var(--stone);
  line-height: 1.6;
}

.affiliate-note strong { color: var(--accent); font-weight: 400; }

/* ── FOLLOW / SOCIAL SECTION ── */
.follow-section {
  padding: 6rem 6rem;
  text-align: center;
  background: var(--deep);
  color: var(--cream);
}

.follow-section .section-label { color: var(--sand); }

.follow-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.follow-section h2 em { font-style: italic; color: var(--clay); }

.follow-sub {
  font-size: 0.88rem;
  color: rgba(249,245,239,0.55);
  max-width: 480px;
  margin: 0 auto 3.5rem;
  line-height: 1.8;
}

.social-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.social-card {
  position: relative;
  overflow: hidden;
  padding: 2.8rem 2rem 2.4rem;
  border: 1px solid rgba(217, 201, 176, 0.15);
  text-decoration: none;
  color: var(--cream);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  transition: transform 0.35s ease, border-color 0.35s ease;
  cursor: pointer;
}

.social-card:hover { transform: translateY(-6px); }

.social-card-bg {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}

.insta-card:hover .social-card-bg {
  opacity: 1;
  background: radial-gradient(circle at 60% 40%, rgba(196,133,106,0.25), transparent 70%);
}

.tiktok-card:hover .social-card-bg {
  opacity: 1;
  background: radial-gradient(circle at 40% 60%, rgba(105,201,208,0.15), transparent 70%);
}

.yt-card:hover .social-card-bg {
  opacity: 1;
  background: radial-gradient(circle at 50% 40%, rgba(200,60,60,0.2), transparent 70%);
}

.insta-card:hover { border-color: rgba(196,133,106,0.5); }
.tiktok-card:hover { border-color: rgba(105,201,208,0.3); }
.yt-card:hover { border-color: rgba(200,60,60,0.4); }

.social-icon {
  position: relative; z-index: 1;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.8rem;
  transition: background 0.3s;
}

.social-card:hover .social-icon { background: rgba(255,255,255,0.12); }

.social-platform {
  position: relative; z-index: 1;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(249,245,239,0.45);
}

.social-handle {
  position: relative; z-index: 1;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
}

.social-desc {
  position: relative; z-index: 1;
  font-size: 0.75rem;
  color: rgba(249,245,239,0.45);
  line-height: 1.6;
  text-align: center;
  margin-top: 0.3rem;
}

.social-cta {
  position: relative; z-index: 1;
  margin-top: 1.2rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  border-bottom: 1px solid rgba(196,133,106,0.4);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.social-card:hover .social-cta { color: var(--sand); border-color: var(--sand); }

/* ── FOOTER ── */
footer {
  padding: 3rem 6rem;
  border-top: 1px solid var(--sand);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--deep);
}

.footer-logo span { color: var(--clay); font-style: italic; }

.footer-links { display: flex; gap: 2rem; }
.footer-links a {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--terracotta); }

.footer-socials {
  display: flex; gap: 1.2rem; align-items: center;
}

.footer-socials a {
  color: var(--stone);
  transition: color 0.2s;
  display: flex;
}

.footer-socials a:hover { color: var(--terracotta); }

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  header { padding: 1.2rem 1.8rem; }
  nav { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 7rem 2rem 3rem; }
  .hero-right { height: 60vw; }
  .mosaic { padding: 0.5rem; }
  .about { grid-template-columns: 1fr; padding: 3rem 2rem; }
  .about-text { padding-right: 0; margin-bottom: 3rem; }
  .divider { padding: 2rem; }
  .gallery-header { padding: 0 2rem 2rem; }
  .gallery-scroll { padding: 0 2rem; }
  .gallery-tile { flex: 0 0 220px; height: 300px; }
  .shop-section { padding: 4rem 2rem; }
  .shop-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .shop-header-right { align-items: flex-start; }
  .shop-header p { text-align: left; }
  .shop-grid { grid-template-columns: 1fr 1fr; }
  .ltk-callout { flex-direction: column; align-items: flex-start; padding: 1.8rem; }
  .ltk-btn { width: 100%; justify-content: center; }
  .collab-popover { right: auto; left: 0; width: 290px; }
  .follow-section { padding: 4rem 2rem; }
  .social-cards { grid-template-columns: 1fr; max-width: 360px; }
  footer { padding: 2.5rem 2rem; flex-direction: column; align-items: flex-start; }
}

@media (max-width: 540px) {
  .shop-grid { grid-template-columns: 1fr; }
}
