/* ============================================================
   RA FABRICS — MAIN STYLESHEET
   Beyond Fabric, A Legacy of Luxury
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Josefin+Sans:wght@100;300;400;600&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --dark:       #18181b;
  --dark2:      #222226;
  --dark3:      #2e2e33;
  --mid:        #4a4a52;
  --warm:       #6b6b75;
  --light:      #9c9ca8;
  --lighter:    #c4c4ce;
  --soft:       #dcdce8;
  --pale:       #f0f0f5;
  --offwhite:   #f7f7fa;
  --white:      #ffffff;
  --gold:       #c9a96e;
  --gold2:      #e2c99a;
  --red:        #b83232;
  --wa:         #25D366;

  --ease:       cubic-bezier(0.23, 1, 0.32, 1);
  --speed:      0.65s;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Josefin Sans', sans-serif;
  background: var(--offwhite);
  color: var(--dark);
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

/* ── LOADER ── */
#loader {
  position: fixed; inset: 0;
  background: var(--dark);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 18px; z-index: 9999;
  transition: opacity 0.9s var(--ease), visibility 0.9s;
}
#loader.hidden { opacity: 0; visibility: hidden; }

.loader-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  color: var(--white); letter-spacing: 0.15em;
  animation: fadeUp 0.8s var(--ease) both;
}
.loader-logo span { color: var(--gold); }
.loader-bar {
  width: 0; height: 1px; background: var(--gold);
  animation: growBar 1.4s var(--ease) 0.5s forwards;
}
.loader-sub {
  font-size: 0.62rem; letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--lighter); opacity: 0;
  animation: fadeUp 0.8s var(--ease) 1.4s forwards;
}
@keyframes growBar { to { width: 180px; } }
@keyframes fadeUp  { from { opacity:0; transform:translateY(14px); } to { opacity:1; transform:translateY(0); } }

/* ── CUSTOM CURSOR (desktop only) ── */
.cur-dot, .cur-ring {
  position: fixed; border-radius: 50%;
  pointer-events: none; z-index: 8888;
  transform: translate(-50%, -50%);
}
.cur-dot  { width:9px; height:9px; background:var(--gold); transition: transform 0.1s; }
.cur-ring { width:34px; height:34px; border:1.5px solid var(--gold);
            opacity:0.55; transition: left 0.18s var(--ease), top 0.18s var(--ease); }

/* ── NAVIGATION ── */
nav {
  position: fixed; top:0; left:0; right:0; z-index: 1000;
  height: 76px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(18px,5vw,80px);
  transition: background 0.5s var(--ease), box-shadow 0.5s;
}
nav.scrolled {
  background: rgba(24,24,27,0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 32px rgba(0,0,0,0.35);
}
.nav-logo { display:flex; align-items:center; gap:12px; }
.logo-badge {
  width:42px; height:42px; border:1.8px solid var(--gold); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-weight:600; font-size:0.82rem; color:var(--gold); letter-spacing:0.04em;
}
.logo-text {
  font-family:'Cormorant Garamond',serif;
  font-size:1.35rem; color:var(--white); letter-spacing:0.1em;
}
.logo-text span { color:var(--gold); }

.nav-links { display:flex; gap:38px; list-style:none; }
.nav-links a {
  font-size:0.67rem; letter-spacing:0.26em; text-transform:uppercase;
  color:var(--lighter); position:relative; transition:color 0.3s;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-4px; left:0;
  width:0; height:1px; background:var(--gold);
  transition:width 0.3s var(--ease);
}
.nav-links a:hover { color:var(--gold); }
.nav-links a:hover::after { width:100%; }

.nav-call {
  display:inline-flex; align-items:center; gap:8px;
  border:1px solid var(--gold); color:var(--gold);
  padding:9px 22px; font-size:0.63rem; letter-spacing:0.22em; text-transform:uppercase;
  transition:all 0.3s;
}
.nav-call:hover { background:var(--gold); color:var(--dark); }

.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; }
.hamburger span { display:block; width:26px; height:1.5px; background:var(--lighter); transition:all 0.3s; }

/* mobile menu */
.mob-menu {
  display:none; position:fixed; inset:0; background:var(--dark);
  flex-direction:column; align-items:center; justify-content:center;
  gap:36px; z-index:990;
}
.mob-menu.open { display:flex; }
.mob-menu a {
  font-family:'Cormorant Garamond',serif; font-size:2.2rem;
  color:var(--white); letter-spacing:0.08em; transition:color 0.3s;
}
.mob-menu a:hover { color:var(--gold); }
.mob-close { position:absolute; top:28px; right:28px; font-size:1.8rem; color:var(--lighter); cursor:pointer; background:none; border:none; }

/* ── HERO ── */
#hero {
  height: 100vh; min-height: 600px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position:absolute; inset:0; z-index:0;
}
.hero-bg img {
  width:100%; height:100%; object-fit:cover;
  filter: brightness(0.32);
  transform: scale(1.05);
  animation: heroZoom 12s var(--ease) infinite alternate;
}
@keyframes heroZoom { to { transform:scale(1.0); } }

.hero-overlay {
  position:absolute; inset:0; z-index:1;
  background: linear-gradient(to bottom,
    rgba(24,24,27,0.3) 0%,
    rgba(24,24,27,0.1) 40%,
    rgba(24,24,27,0.7) 100%);
}

.hero-content {
  position:relative; z-index:2;
  text-align:center; padding:0 20px;
}
.hero-tag {
  font-size:0.6rem; letter-spacing:0.5em; text-transform:uppercase;
  color:var(--gold); margin-bottom:18px;
  opacity:0; animation:fadeUp 0.8s var(--ease) 2.6s forwards;
}
.hero-h1 {
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(3.6rem,10vw,8.5rem);
  font-weight:300; line-height:0.88; color:var(--white);
  letter-spacing:-0.01em;
  opacity:0; animation:fadeUp 0.9s var(--ease) 2.8s forwards;
}
.hero-h1 em { font-style:italic; color:var(--gold); }
.hero-vline {
  width:1px; height:0; background:var(--gold);
  margin:28px auto;
  animation:growV 0.8s var(--ease) 3.3s forwards;
}
@keyframes growV { to { height:55px; } }
.hero-sub {
  font-size:0.68rem; letter-spacing:0.4em; text-transform:uppercase;
  color:var(--lighter); margin-bottom:46px;
  opacity:0; animation:fadeUp 0.8s var(--ease) 3.5s forwards;
}
.hero-btns {
  display:flex; gap:18px; justify-content:center; flex-wrap:wrap;
  opacity:0; animation:fadeUp 0.8s var(--ease) 3.7s forwards;
}

/* ── BUTTONS ── */
.btn-gold {
  background:var(--gold); color:var(--dark);
  padding:15px 38px; border:none; cursor:pointer;
  font-family:'Josefin Sans',sans-serif; font-size:0.63rem;
  letter-spacing:0.3em; text-transform:uppercase;
  display:inline-block; transition:all 0.35s var(--ease);
}
.btn-gold:hover { background:var(--gold2); transform:translateY(-2px); box-shadow:0 12px 30px rgba(201,169,110,0.3); }

.btn-ghost {
  background:transparent; color:var(--white);
  padding:15px 38px; border:1px solid rgba(255,255,255,0.3);
  cursor:pointer; font-family:'Josefin Sans',sans-serif; font-size:0.63rem;
  letter-spacing:0.3em; text-transform:uppercase;
  display:inline-block; transition:all 0.35s var(--ease);
}
.btn-ghost:hover { border-color:var(--gold); color:var(--gold); }

/* scroll hint */
.hero-scroll {
  position:absolute; bottom:36px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:8px; z-index:2;
  opacity:0; animation:fadeUp 1s var(--ease) 4.2s forwards;
}
.hero-scroll span { font-size:0.52rem; letter-spacing:0.38em; color:var(--light); text-transform:uppercase; }
.scroll-bar { width:1px; height:48px; background:linear-gradient(to bottom,var(--gold),transparent); animation:pulse 2s ease infinite; }
@keyframes pulse { 0%,100%{opacity:0.3} 50%{opacity:1} }

/* ── MARQUEE ── */
.marquee-wrap {
  background:var(--dark); overflow:hidden;
  border-top:1px solid rgba(201,169,110,0.18);
  border-bottom:1px solid rgba(201,169,110,0.18);
  padding:16px 0;
}
.marquee-track {
  display:flex; width:max-content;
  animation:ticker 28s linear infinite;
}
.marquee-track:hover { animation-play-state:paused; }
.marquee-item {
  display:flex; align-items:center; gap:26px; padding:0 26px;
  font-size:0.62rem; letter-spacing:0.33em; text-transform:uppercase;
  color:var(--light); white-space:nowrap;
}
.marquee-dot { width:4px; height:4px; border-radius:50%; background:var(--gold); flex-shrink:0; }
@keyframes ticker { to { transform:translateX(-50%); } }

/* ── SECTION COMMONS ── */
.section { padding: clamp(60px,9vw,120px) clamp(18px,5vw,80px); }

.sec-label {
  font-size:0.58rem; letter-spacing:0.5em; text-transform:uppercase;
  color:var(--gold); margin-bottom:14px;
}
.sec-title {
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2rem,5vw,3.6rem);
  font-weight:300; line-height:1.1; color:var(--dark);
}
.sec-title em { font-style:italic; color:var(--mid); }
.sec-title.light { color:var(--white); }
.sec-title.light em { color:var(--lighter); }
.sec-rule { width:56px; height:1px; background:var(--gold); margin:22px 0; }
.sec-rule.center { margin:22px auto; }
.sec-desc {
  font-size:0.82rem; line-height:2.1; letter-spacing:0.04em;
  color:var(--warm); max-width:500px;
}
.sec-desc.light { color:var(--light); }

/* ── REVEAL ANIMATION ── */
.reveal { opacity:0; transform:translateY(36px); transition:opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.reveal.vis { opacity:1; transform:translateY(0); }
.d1 { transition-delay:0.1s; }
.d2 { transition-delay:0.2s; }
.d3 { transition-delay:0.3s; }
.d4 { transition-delay:0.4s; }
.d5 { transition-delay:0.5s; }

/* ── ABOUT ── */
#about { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; background:var(--offwhite); }

.about-imgs { position:relative; height:520px; }
.about-img-a {
  position:absolute; top:0; left:0; width:72%; height:78%;
  overflow:hidden;
  box-shadow:24px 24px 64px rgba(0,0,0,0.13);
}
.about-img-b {
  position:absolute; bottom:0; right:0; width:52%; height:52%;
  overflow:hidden;
  border:5px solid var(--offwhite);
  box-shadow:-12px -12px 36px rgba(0,0,0,0.09);
}
.about-badge {
  position:absolute; bottom:48%; right:-16px;
  width:84px; height:84px; border-radius:50%;
  background:var(--dark); z-index:2;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  box-shadow:0 8px 24px rgba(0,0,0,0.25);
}
.about-badge-n { font-family:'Cormorant Garamond',serif; font-size:1.6rem; color:var(--gold); line-height:1; }
.about-badge-t { font-size:0.4rem; letter-spacing:0.18em; text-transform:uppercase; color:var(--lighter); text-align:center; padding:0 6px; }

.about-stats { display:grid; grid-template-columns:1fr 1fr; gap:28px; margin-top:38px; }
.stat { border-left:2px solid var(--gold); padding-left:18px; }
.stat-n { font-family:'Cormorant Garamond',serif; font-size:2.1rem; color:var(--dark); line-height:1; }
.stat-l { font-size:0.58rem; letter-spacing:0.2em; text-transform:uppercase; color:var(--warm); margin-top:4px; }

/* ── CATALOGUE ── */
#catalogue { background:var(--dark); }

.cat-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:3px; margin-top:56px;
}
.cat-item {
  position:relative; overflow:hidden; cursor:pointer;
  background:var(--dark3);
}
.cat-item.tall { grid-row:span 2; }
.cat-item img { transition:transform 0.85s var(--ease); height:100%; min-height:260px; }
.cat-item:hover img { transform:scale(1.07); }

.cat-over {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(24,24,27,0.92) 0%, transparent 55%);
  display:flex; flex-direction:column; justify-content:flex-end;
  padding:28px; opacity:0; transition:opacity 0.4s var(--ease);
}
.cat-item:hover .cat-over { opacity:1; }
.cat-tag { font-size:0.53rem; letter-spacing:0.38em; text-transform:uppercase; color:var(--gold); margin-bottom:7px; }
.cat-name { font-family:'Cormorant Garamond',serif; font-size:1.45rem; color:var(--white); }
.cat-link {
  margin-top:14px; display:inline-flex; align-items:center; gap:8px;
  font-size:0.58rem; letter-spacing:0.28em; text-transform:uppercase; color:var(--gold);
  transition:gap 0.3s;
}
.cat-item:hover .cat-link { gap:14px; }

/* ── FABRIC TYPES ── */
#fabrics { background:var(--pale); }
.fab-grid {
  display:grid; grid-template-columns:repeat(4,1fr); gap:2px;
  margin-top:56px;
}
.fab-card {
  background:var(--white); padding:40px 28px;
  border-bottom:3px solid transparent;
  transition:background 0.4s var(--ease), border-color 0.4s, transform 0.4s var(--ease);
  position:relative; overflow:hidden;
}
.fab-card::after {
  content:''; position:absolute; bottom:0; left:0; right:0;
  height:3px; background:var(--gold);
  transform:scaleX(0); transform-origin:left;
  transition:transform 0.4s var(--ease);
}
.fab-card:hover { background:var(--dark); transform:translateY(-5px); }
.fab-card:hover::after { transform:scaleX(1); }
.fab-card:hover .fab-icon { color:var(--gold); }
.fab-card:hover .fab-title { color:var(--white); }
.fab-card:hover .fab-body { color:var(--light); }
.fab-icon { font-size:1.9rem; margin-bottom:18px; color:var(--warm); transition:color 0.4s; }
.fab-title { font-family:'Cormorant Garamond',serif; font-size:1.25rem; margin-bottom:12px; color:var(--dark); transition:color 0.4s; }
.fab-body { font-size:0.74rem; line-height:1.85; color:var(--warm); transition:color 0.4s; }

/* ── WHY RA ── */
#why {
  background: linear-gradient(135deg,var(--dark) 0%,var(--dark2) 100%);
  position:relative; overflow:hidden;
}
#why::before {
  content:'RA'; position:absolute; right:-30px; top:50%; transform:translateY(-50%);
  font-family:'Cormorant Garamond',serif; font-size:28vw;
  color:rgba(255,255,255,0.025); pointer-events:none; line-height:1;
}
.why-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:32px; margin-top:56px;
}
.why-card {
  padding:38px 32px; border:1px solid rgba(201,169,110,0.14);
  transition:border-color 0.4s, background 0.4s;
}
.why-card:hover { border-color:var(--gold); background:rgba(201,169,110,0.05); }
.why-num {
  font-family:'Cormorant Garamond',serif; font-size:3.8rem;
  color:rgba(201,169,110,0.14); line-height:1; margin-bottom:18px;
  transition:color 0.4s;
}
.why-card:hover .why-num { color:rgba(201,169,110,0.28); }
.why-title { font-family:'Cormorant Garamond',serif; font-size:1.35rem; color:var(--white); margin-bottom:12px; }
.why-body { font-size:0.76rem; line-height:1.95; color:var(--light); }

/* ── TESTIMONIALS ── */
#testimonials { background:var(--offwhite); }
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:26px; margin-top:56px; }
.testi-card {
  background:var(--white); padding:38px 34px;
  border-bottom:3px solid transparent;
  box-shadow:0 4px 20px rgba(0,0,0,0.05);
  transition:border-color 0.4s, box-shadow 0.4s, transform 0.4s var(--ease);
}
.testi-card:hover { border-color:var(--gold); box-shadow:0 12px 40px rgba(0,0,0,0.1); transform:translateY(-4px); }
.testi-stars { color:var(--gold); font-size:0.78rem; letter-spacing:3px; margin-bottom:18px; }
.testi-quote { font-family:'Cormorant Garamond',serif; font-size:1.08rem; line-height:1.75; font-style:italic; color:var(--dark); margin-bottom:22px; }
.testi-author { font-size:0.62rem; letter-spacing:0.2em; text-transform:uppercase; color:var(--warm); }

/* ── CONTACT ── */
#contact {
  display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:start;
  background:var(--dark);
}
#contact .sec-desc { color:var(--light); }
.contact-items { margin-top:38px; display:flex; flex-direction:column; gap:26px; }
.c-item { display:flex; gap:18px; align-items:flex-start; }
.c-icon {
  width:42px; height:42px; flex-shrink:0;
  border:1px solid rgba(201,169,110,0.3);
  display:flex; align-items:center; justify-content:center;
  font-size:1rem; color:var(--gold);
}
.c-label { font-size:0.53rem; letter-spacing:0.28em; text-transform:uppercase; color:var(--light); margin-bottom:4px; }
.c-val { font-size:0.88rem; color:var(--white); line-height:1.55; }
.c-val a { color:var(--white); transition:color 0.3s; }
.c-val a:hover { color:var(--gold); }

/* contact form */
.c-form { display:flex; flex-direction:column; gap:18px; padding-top:56px; }
.f-label { font-size:0.57rem; letter-spacing:0.24em; text-transform:uppercase; color:var(--light); margin-bottom:6px; display:block; }
.f-input, .f-area {
  width:100%; background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  color:var(--white); padding:13px 16px;
  font-family:'Josefin Sans',sans-serif; font-size:0.8rem;
  outline:none; transition:border-color 0.3s;
}
.f-input:focus, .f-area:focus { border-color:var(--gold); }
.f-input::placeholder, .f-area::placeholder { color:var(--mid); }
.f-area { height:110px; resize:none; }
.f-btn {
  background:var(--gold); color:var(--dark); border:none;
  padding:15px 38px; cursor:pointer;
  font-family:'Josefin Sans',sans-serif; font-size:0.63rem;
  letter-spacing:0.3em; text-transform:uppercase;
  align-self:flex-start; transition:all 0.35s var(--ease);
}
.f-btn:hover { background:var(--gold2); transform:translateY(-2px); }

/* ── FOOTER ── */
footer { background:#111115; padding:52px clamp(18px,5vw,80px) 28px; }
.foot-top {
  display:grid; grid-template-columns:2fr 1fr 1fr; gap:56px;
  padding-bottom:38px; border-bottom:1px solid rgba(255,255,255,0.06);
}
.foot-brand-name { font-family:'Cormorant Garamond',serif; font-size:1.75rem; color:var(--white); margin-bottom:10px; }
.foot-brand-name span { color:var(--gold); }
.foot-tag { font-family:'Cormorant Garamond',serif; font-style:italic; font-size:0.7rem; color:var(--warm); letter-spacing:0.22em; margin-bottom:22px; }
.foot-socials { display:flex; gap:10px; }
.soc-btn {
  width:35px; height:35px; border:1px solid rgba(201,169,110,0.3);
  display:flex; align-items:center; justify-content:center;
  color:var(--light); font-size:0.7rem; transition:all 0.3s;
}
.soc-btn:hover { border-color:var(--gold); color:var(--gold); background:rgba(201,169,110,0.08); }
.foot-col-title { font-size:0.57rem; letter-spacing:0.36em; text-transform:uppercase; color:var(--gold); margin-bottom:18px; }
.foot-links { list-style:none; display:flex; flex-direction:column; gap:12px; }
.foot-links a { font-size:0.76rem; color:var(--light); transition:color 0.3s; }
.foot-links a:hover { color:var(--gold); }
.foot-bottom {
  display:flex; justify-content:space-between; align-items:center;
  padding-top:22px; flex-wrap:wrap; gap:10px;
}
.foot-copy { font-size:0.62rem; color:var(--mid); }
.foot-loc { font-size:0.62rem; color:var(--mid); }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position:fixed; bottom:28px; right:28px; z-index:2000;
  width:56px; height:56px; border-radius:50%;
  background:var(--wa); display:flex; align-items:center; justify-content:center;
  box-shadow:0 6px 28px rgba(37,211,102,0.4);
  transition:transform 0.3s var(--ease), box-shadow 0.3s;
  animation:waPulse 2.8s ease infinite;
}
.wa-float:hover { transform:scale(1.13); box-shadow:0 10px 38px rgba(37,211,102,0.55); }
.wa-float svg { width:28px; height:28px; fill:#fff; }
.wa-tip {
  position:absolute; right:66px; top:50%; transform:translateY(-50%);
  background:var(--dark); color:var(--white);
  padding:7px 14px; font-size:0.68rem; white-space:nowrap; border-radius:2px;
  opacity:0; pointer-events:none; transition:opacity 0.3s;
}
.wa-float:hover .wa-tip { opacity:1; }
@keyframes waPulse {
  0%,100% { box-shadow:0 6px 28px rgba(37,211,102,0.4); }
  50%      { box-shadow:0 6px 36px rgba(37,211,102,0.65), 0 0 0 9px rgba(37,211,102,0.1); }
}

/* ── WELCOME POPUP ── */
.modal-bg {
  position:fixed; inset:0; background:rgba(0,0,0,0.8);
  z-index:7000; display:flex; align-items:center; justify-content:center;
  opacity:0; pointer-events:none; transition:opacity 0.45s;
  backdrop-filter:blur(5px);
}
.modal-bg.show { opacity:1; pointer-events:all; }
.modal-box {
  background:var(--white); max-width:540px; width:90%; padding:58px;
  position:relative;
  transform:scale(0.88) translateY(18px);
  transition:transform 0.45s var(--ease);
}
.modal-bg.show .modal-box { transform:scale(1) translateY(0); }
.modal-x { position:absolute; top:18px; right:22px; font-size:1.35rem; color:var(--light); cursor:pointer; background:none; border:none; line-height:1; }
.modal-x:hover { color:var(--dark); }
.modal-tag { font-size:0.55rem; letter-spacing:0.42em; text-transform:uppercase; color:var(--gold); margin-bottom:10px; }
.modal-title { font-family:'Cormorant Garamond',serif; font-size:1.9rem; color:var(--dark); margin-bottom:14px; line-height:1.2; }
.modal-body { font-size:0.78rem; line-height:1.95; color:var(--warm); margin-bottom:28px; }
.modal-cta {
  background:var(--dark); color:var(--white); border:none;
  padding:13px 34px; cursor:pointer;
  font-family:'Josefin Sans',sans-serif; font-size:0.63rem;
  letter-spacing:0.3em; text-transform:uppercase; transition:background 0.3s;
}
.modal-cta:hover { background:var(--gold); color:var(--dark); }

/* ── RESPONSIVE ── */
@media (max-width:1050px) {
  .fab-grid { grid-template-columns:repeat(2,1fr); }
  .why-grid { grid-template-columns:repeat(2,1fr); }
  .cat-grid { grid-template-columns:repeat(2,1fr); }
  .cat-item.tall { grid-row:span 1; }
}
@media (max-width:850px) {
  #about { grid-template-columns:1fr; gap:40px; }
  .about-imgs { height:340px; }
  #contact { grid-template-columns:1fr; gap:40px; }
  .c-form { padding-top:0; }
  .testi-grid { grid-template-columns:1fr; }
  .foot-top { grid-template-columns:1fr 1fr; }
}
@media (max-width:680px) {
  .nav-links, .nav-call { display:none; }
  .hamburger { display:flex; }
  .why-grid { grid-template-columns:1fr; }
  .fab-grid { grid-template-columns:1fr; }
  .cat-grid { grid-template-columns:1fr; }
  .foot-top { grid-template-columns:1fr; }
  .about-stats { grid-template-columns:1fr 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   CATALOGUE BOOK CARDS
══════════════════════════════════════════════════════════════ */
.cat-books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.1rem;
  max-width: 1200px;
  margin: 2rem auto 0;
}

.cat-book {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(196,160,80,0.18);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  display: flex;
  flex-direction: column;
}
.cat-book:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,.5), 0 0 0 1px rgba(196,160,80,.45);
  border-color: rgba(196,160,80,.45);
}

.cat-book-img {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.cat-book-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.cat-book:hover .cat-book-img img { transform: scale(1.07); }

.cat-book-badge {
  position: absolute;
  top: 9px;
  right: 9px;
  background: var(--gold);
  color: #111;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .07em;
  padding: 3px 8px;
  border-radius: 20px;
  text-transform: uppercase;
}

.cat-book-placeholder {
  background: rgba(255,255,255,.04);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(196,160,80,.1);
}
.soon-icon { font-size: 3rem; opacity: .3; }

.cat-book-info {
  padding: .9rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.cat-book-name {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--cream);
  font-weight: 600;
  margin-bottom: .2rem;
  letter-spacing: .02em;
}
.cat-book-sub {
  font-size: .68rem;
  color: rgba(240,235,220,.4);
  letter-spacing: .04em;
  margin-bottom: .75rem;
  line-height: 1.4;
}
.cat-book-btn {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  font-size: .7rem;
  letter-spacing: .08em;
  padding: .4rem .9rem;
  border-radius: 5px;
  border: 1px solid rgba(196,160,80,.4);
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
  text-transform: uppercase;
  align-self: flex-start;
  margin-top: auto;
}
.cat-book-btn:hover {
  background: var(--gold);
  color: #111;
  border-color: var(--gold);
}

.cat-book-soon { opacity: .6; cursor: default; }
.cat-book-soon:hover { transform: none; box-shadow: none; border-color: rgba(196,160,80,.2); }

/* ══════════════════════════════════════════════════════════════
   CATALOGUE PDF MODAL
══════════════════════════════════════════════════════════════ */
.cat-modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(5,5,5,.92);
  backdrop-filter: blur(8px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
  padding: 1rem;
}
.cat-modal-bg.show {
  opacity: 1;
  pointer-events: all;
}

.cat-modal-box {
  background: #111;
  border: 1px solid rgba(196,160,80,.3);
  border-radius: 16px;
  width: 100%;
  max-width: 1200px;
  max-height: 95vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(.95);
  transition: transform .35s ease;
}
.cat-modal-bg.show .cat-modal-box { transform: scale(1); }

.cat-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.4rem;
  border-bottom: 1px solid rgba(196,160,80,.15);
  gap: 1rem;
  flex-wrap: wrap;
}
.cat-modal-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 600;
  flex: 1;
}
.cat-modal-actions {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex-wrap: wrap;
}
.cat-modal-dl {
  font-size: .78rem;
  color: rgba(240,235,220,.7);
  text-decoration: none;
  border: 1px solid rgba(240,235,220,.2);
  padding: .4rem .85rem;
  border-radius: 6px;
  transition: color .2s, border-color .2s;
  letter-spacing: .04em;
}
.cat-modal-dl:hover { color: var(--gold); border-color: var(--gold); }

.cat-modal-wa {
  background: #25d366;
  color: #fff;
  border: none;
  padding: .45rem 1rem;
  border-radius: 6px;
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .04em;
  transition: background .2s;
}
.cat-modal-wa:hover { background: #1ebe5a; }

.cat-modal-close {
  background: rgba(255,255,255,.07);
  border: none;
  color: rgba(240,235,220,.7);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}
.cat-modal-close:hover { background: rgba(255,60,60,.15); color: #ff5555; }

.cat-modal-viewer {
  flex: 1;
  min-height: 0;
  background: #1a1a1a;
}
.cat-modal-viewer iframe {
  width: 100%;
  height: 100%;
  min-height: 55vh;
  border: none;
  display: block;
}

.cat-modal-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.4rem;
  border-top: 1px solid rgba(196,160,80,.15);
  flex-wrap: wrap;
}
.cat-modal-foot-text {
  font-size: .8rem;
  color: rgba(240,235,220,.45);
  letter-spacing: .03em;
}
.cat-modal-wa-big {
  display: flex;
  align-items: center;
  gap: .55rem;
  background: #25d366;
  color: #fff;
  border: none;
  padding: .65rem 1.4rem;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .04em;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.cat-modal-wa-big:hover { background: #1ebe5a; transform: translateY(-2px); }

@media (max-width: 600px) {
  .cat-modal-head { flex-direction: column; align-items: flex-start; }
  .cat-modal-foot { flex-direction: column; align-items: stretch; }
  .cat-modal-wa-big { justify-content: center; }
  .cat-modal-foot-text { text-align: center; }
  .cat-book-img { height: 160px; }
}

/* ── CATEGORY TABS ───────────────────────────────────────── */
.cat-tabs {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0 2.5rem;
  flex-wrap: wrap;
}
.cat-tab {
  padding: .7rem 2rem;
  border: 2px solid #c8a96e;
  background: transparent;
  color: #c8a96e;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .06em;
  border-radius: 40px;
  cursor: pointer;
  transition: all .25s;
}
.cat-tab:hover { background: rgba(200,169,110,.12); }
.cat-tab.active {
  background: #c8a96e;
  color: #1a1a1a;
  box-shadow: 0 4px 18px rgba(200,169,110,.35);
}
.cat-tab-panel { display: none; }
.cat-tab-panel.active { display: block; }
.cat-tab-desc {
  text-align: center;
  color: #aaa;
  font-size: .95rem;
  max-width: 620px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════
   CATALOGUE TEASER (index.html)
══════════════════════════════════════════════════════════════ */
.catalogue-teaser-section {
  background: var(--dark);
  color: var(--white);
}

.cat-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 2.5rem auto 0;
}

.cat-preview-card {
  cursor: pointer;
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.38s cubic-bezier(0.23,1,0.32,1),
              box-shadow 0.38s,
              border-color 0.38s;
  background: rgba(255,255,255,0.02);
}
.cat-preview-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,169,110,0.4);
  border-color: rgba(201,169,110,0.4);
}
.cpv-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.cpv-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
  filter: brightness(0.7);
}
.cat-preview-card:hover .cpv-img img {
  transform: scale(1.07);
  filter: brightness(0.55);
}
.cpv-over {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: flex-end; justify-content: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity 0.3s;
}
.cat-preview-card:hover .cpv-over { opacity: 1; }
.cpv-count {
  font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold2); background: rgba(0,0,0,0.6);
  padding: 5px 10px; border-radius: 20px;
  margin-bottom: 8px;
}
.cpv-arrow {
  font-size: 1.5rem; color: var(--gold);
}
.cpv-info {
  padding: 16px 18px 18px;
}
.cpv-label {
  font-size: 0.54rem; letter-spacing: 0.36em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.cpv-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 400; color: var(--white);
  line-height: 1.15;
}
.cpv-name em { font-style: italic; color: var(--gold2); }

@media (max-width: 680px) {
  .cat-preview-grid { grid-template-columns: 1fr; gap: 12px; }
}
