/* ============================================================
   OLD BAG ORIGINALS — THEME CSS v2.0
   Colours are injected as CSS variables by the Customizer.
   Edit colours at: Appearance → Customize → Brand Colours
   ============================================================ */

:root {
  --cream:      #f5f0e8;
  --warm-white: #faf8f4;
  --espresso:   #2b1f14;
  --bark:       #6b4c30;
  --sage:       #7d8c72;
  --rust:       #b85c38;
  --sand:       #d4c4a8;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

/* ── HEADER / NAV ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 4rem;
  background: rgba(245,240,232,0.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sand);
  transition: padding .3s;
}
.site-header.scrolled { padding: 1rem 4rem; }

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-weight: 400;
  letter-spacing: .04em; color: var(--espresso);
  text-decoration: none; white-space: nowrap;
}
.nav-logo span, .footer-logo span { color: var(--rust); font-style: italic; }

/* WP custom logo */
.nav-logo .custom-logo { height: 48px; width: auto; vertical-align: middle; }

.nav-links { display: flex; gap: 2.4rem; list-style: none; }
.nav-links a {
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--bark); text-decoration: none; font-weight: 400;
  position: relative; transition: color .25s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 100%;
  height: 1px; background: var(--rust); transition: right .3s;
}
.nav-links a:hover,
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a { color: var(--rust); }
.nav-links a:hover::after,
.nav-links .current-menu-item > a::after,
.nav-links .current_page_item > a::after { right: 0; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 1.5px;
  background: var(--espresso); transition: all .3s;
}

/* ── PAGE WRAP ── */
#page-wrap { padding-top: 80px; min-height: calc(100vh - 80px); }

/* ── BUTTONS ── */
.btn {
  display: inline-block; padding: .9rem 2.4rem;
  border: 1.5px solid var(--espresso); font-size: .75rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--espresso); text-decoration: none; font-weight: 400;
  cursor: pointer; background: transparent;
  transition: background .3s, color .3s;
  font-family: 'Jost', sans-serif;
}
.btn:hover { background: var(--espresso); color: var(--cream); }
.btn-rust { border-color: var(--rust); color: var(--rust); }
.btn-rust:hover { background: var(--rust); color: var(--cream); }

/* ── HERO ── */
.hero {
  height: calc(100vh - 80px);
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem 4rem 6rem 6rem; position: relative; z-index: 2;
}
.hero-eyebrow {
  font-size: .72rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 1.8rem; font-weight: 400;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 5.5vw, 5.4rem);
  font-weight: 300; line-height: 1.08;
  color: var(--espresso); margin-bottom: 1.8rem;
}
.hero-title em { color: var(--rust); font-style: italic; }
.hero-sub {
  font-size: .95rem; line-height: 1.75; color: var(--bark);
  max-width: 38ch; margin-bottom: 3rem; font-weight: 300;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual { position: relative; overflow: hidden; }
.hero-visual img, .hero-visual video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, transparent 14%);
  pointer-events: none;
}
.hero-placeholder, .about-img-placeholder, .story-img-placeholder, .bag-img-placeholder {
  width: 100%; height: 100%; min-height: 200px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, #c8b49a 0%, #8a6a4e 40%, #4a3728 100%);
  font-family: 'Cormorant Garamond', serif;
  font-size: .85rem; color: rgba(255,255,255,.6);
  letter-spacing: .08em; text-align: center; padding: 1.5rem;
}

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--sage); z-index: 3;
  animation: obo-pulse 2.5s ease-in-out infinite;
}
.hero-scroll::after { content: ''; width: 1px; height: 36px; background: var(--sage); }
@keyframes obo-pulse { 0%,100%{opacity:.4} 50%{opacity:1} }

/* ── VIDEO STRIP ── */
.video-strip {
  background: var(--espresso);
  padding: 5rem 0; text-align: center;
}
.video-strip h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem; font-weight: 300; color: var(--cream);
  margin-bottom: .6rem; letter-spacing: .04em;
}
.video-sub {
  font-size: .85rem; color: var(--sand); letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 2.5rem;
}
.video-container { max-width: 860px; margin: 0 auto; padding: 0 2rem; }
.video-wrapper {
  aspect-ratio: 16/9; background: #1a1008;
  border: 1px solid rgba(212,196,168,.18);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.video-wrapper iframe,
.video-wrapper video { width: 100%; height: 100%; border: none; object-fit: cover; }
.video-placeholder { display: flex; flex-direction: column; align-items: center; gap: 1rem; padding: 3rem; }
.video-placeholder span { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--sand); text-align: center; }
.play-btn {
  width: 72px; height: 72px; border: 2px solid var(--rust);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .3s;
}
.play-btn:hover { background: var(--rust); }

/* ── SECTION COMMON ── */
.section { padding: 7rem 6rem; }
.section-label {
  font-size: .68rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--rust); margin-bottom: 1rem; font-weight: 400;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300; line-height: 1.15; margin-bottom: 1.2rem;
}
.section-title em { color: var(--rust); font-style: italic; }
.section-sub {
  font-size: .9rem; line-height: 1.8; color: var(--bark);
  max-width: 55ch; margin-bottom: 3.5rem;
}
.empty-state { color: var(--bark); font-style: italic; }

/* ── COLLECTION GRID ── */
.collection-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.bag-card { position: relative; overflow: hidden; cursor: pointer; }
.bag-card-img { aspect-ratio: 3/4; overflow: hidden; position: relative; background: var(--sand); }
.bag-card-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.bag-card:hover .bag-card-img img { transform: scale(1.04); }
.bag-img-placeholder { min-height: 280px; font-size: .75rem; }
.sold-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--espresso); color: var(--cream);
  font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
  padding: .3rem .8rem;
}
.bag-card--sold .bag-card-img img { opacity: .55; }
.bag-card-info { padding: 1.2rem 0 .4rem; }
.bag-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 400; margin-bottom: .2rem;
}
.bag-mat { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--sage); }
.bag-price { font-size: .8rem; color: var(--bark); margin-top: .3rem; }

/* ── QUOTE DIVIDER ── */
.divider-quote { background: var(--bark); padding: 5rem 6rem; text-align: center; }
.divider-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 300; font-style: italic;
  color: var(--cream); line-height: 1.45; max-width: 720px; margin: 0 auto;
}
.divider-quote cite {
  display: block; margin-top: 1.4rem;
  font-family: 'Jost', sans-serif; font-style: normal;
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--sand);
}

/* ── ABOUT HERO ── */
.about-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 60vh; }
.about-hero-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem 5rem 6rem 6rem;
}
.about-hero-img { overflow: hidden; min-height: 460px; background: linear-gradient(145deg,#c8b49a,#6b4c30); }
.about-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-img-placeholder { min-height: 460px; font-size: .85rem; }

/* ── STORY GRID ── */
.story-grid { padding: 0 6rem 7rem; }
.story-grid-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 300;
  margin-bottom: 3.5rem; text-align: center;
}
.story-item {
  display: grid; gap: 4rem; margin-bottom: 5rem; align-items: center;
}
.story-item.layout-left  { grid-template-columns: 1fr 1fr; }
.story-item.layout-right { grid-template-columns: 1fr 1fr; }
.story-item.layout-right .story-img  { order: 2; }
.story-item.layout-right .story-text { order: 1; }
.story-img {
  aspect-ratio: 4/3; overflow: hidden; position: relative;
}
.story-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.story-img::before {
  content: attr(data-label);
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.8);
  background: rgba(43,31,20,.4); padding: .3rem .7rem;
  backdrop-filter: blur(4px);
}
.story-img-placeholder {
  width: 100%; height: 100%; min-height: 240px;
  background: linear-gradient(145deg, #b8a090, #7a5840, #4a3020);
  font-size: .78rem;
}
.story-text { padding: 0 1rem; }
.story-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 300; margin-bottom: 1rem;
}
.story-text p { font-size: .9rem; line-height: 1.85; color: var(--bark); margin-bottom: 1rem; }

/* ── CONTACT ── */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 80px); }
.contact-info {
  background: var(--espresso); padding: 6rem 5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 300; color: var(--cream);
  line-height: 1.15; margin-bottom: 1.5rem;
}
.contact-info h2 em { color: var(--rust); font-style: italic; }
.contact-info > p { font-size: .88rem; line-height: 1.8; color: var(--sand); margin-bottom: 2.5rem; max-width: 40ch; }
.contact-detail { margin-bottom: 1.2rem; }
.contact-detail span {
  display: block; font-size: .65rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--rust); margin-bottom: .25rem;
}
.contact-detail a,
.contact-detail p { font-size: .9rem; color: var(--cream); text-decoration: none; font-weight: 300; margin: 0; }
.contact-form-side {
  background: var(--warm-white); padding: 6rem 5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.contact-form-side h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem; font-weight: 300; margin-bottom: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.2rem; }
.form-group { display: flex; flex-direction: column; margin-bottom: 1.2rem; }
.form-group label {
  font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--bark); margin-bottom: .5rem; font-weight: 400;
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--sand); background: transparent;
  padding: .85rem 1rem; font-family: 'Jost', sans-serif;
  font-size: .88rem; color: var(--espresso); font-weight: 300;
  outline: none; transition: border-color .25s; resize: none;
  -webkit-appearance: none; border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--bark); }
.form-group textarea { min-height: 120px; }
.form-note { font-size: .72rem; color: var(--sage); margin-top: 1rem; line-height: 1.6; }
.form-success {
  display: none; text-align: center; padding: 3rem 0;
}
.form-success h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 300; margin: 1rem 0 .5rem;
}
.form-success p { font-size: .85rem; color: var(--bark); }

/* ── FOOTER ── */
.site-footer {
  background: var(--espresso); padding: 3rem 6rem;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; color: var(--cream); font-weight: 300;
}
.footer-copy { font-size: .7rem; letter-spacing: .12em; color: var(--sand); text-transform: uppercase; }
.footer-links { display: flex; gap: 1.6rem; list-style: none; }
.footer-links a, .footer-links li a {
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--sand); text-decoration: none; transition: color .25s;
}
.footer-links a:hover, .footer-links li a:hover { color: var(--rust); }

/* ── PAGE CONTENT (generic) ── */
.page-content { font-size: .95rem; line-height: 1.85; color: var(--bark); max-width: 65ch; margin-top: 2rem; }
.page-content p { margin-bottom: 1rem; }

/* ── ANIMATIONS ── */
@keyframes obo-fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
.fade-up   { animation: obo-fadeUp .8s ease forwards; }
.fade-up-d1 { animation-delay: .15s; opacity: 0; }
.fade-up-d2 { animation-delay: .3s;  opacity: 0; }
.fade-up-d3 { animation-delay: .45s; opacity: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .section       { padding: 5rem 3rem; }
  .story-grid    { padding: 0 3rem 5rem; }
  .site-footer   { padding: 2.5rem 3rem; }
  .site-header   { padding: 1.2rem 2.5rem; }
  .about-hero-text { padding: 4rem 3rem; }
  .collection-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .site-header { padding: 1.2rem 1.5rem; }
  .site-header.scrolled { padding: 1rem 1.5rem; }

  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; background: rgba(245,240,232,.98);
    border-bottom: 1px solid var(--sand);
  }
  .nav-links.open { display: flex; }
  .nav-links li    { border-top: 1px solid var(--sand); }
  .nav-links a     { display: block; padding: 1rem 2rem; font-size: .82rem; }
  .nav-toggle      { display: flex; }

  .hero                      { grid-template-columns: 1fr; height: auto; min-height: 80vh; }
  .hero-text                 { padding: 4rem 1.5rem; }
  .hero-visual               { display: none; }

  .section                   { padding: 4rem 1.5rem; }
  .collection-grid           { grid-template-columns: 1fr 1fr; gap: 1px; }
  .about-hero                { grid-template-columns: 1fr; }
  .about-hero-text           { padding: 4rem 1.5rem; }
  .about-hero-img            { min-height: 280px; }
  .story-grid                { padding: 0 1.5rem 4rem; }
  .story-item.layout-left,
  .story-item.layout-right   { grid-template-columns: 1fr; gap: 2rem; }
  .story-item.layout-right .story-img,
  .story-item.layout-right .story-text { order: unset; }
  .contact-wrap              { grid-template-columns: 1fr; }
  .contact-info              { padding: 4rem 1.5rem; }
  .contact-form-side         { padding: 4rem 1.5rem; }
  .form-row                  { grid-template-columns: 1fr; }
  .divider-quote             { padding: 4rem 1.5rem; }
  .site-footer               { flex-direction: column; gap: 1.2rem; text-align: center; padding: 2.5rem 1.5rem; }
  .footer-links              { flex-wrap: wrap; justify-content: center; }
}

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