:root{
  --rh-ink:#171411;
  --rh-charcoal:#211d1a;
  --rh-charcoal-2:#2a2521;
  --rh-ivory:#f7f3ec;
  --rh-paper:#fffdfa;
  --rh-wine:#6a2636;
  --rh-wine-dark:#4d1825;
  --rh-gold:#b99258;
  --rh-gold-soft:#d8c4a2;
  --rh-line:rgba(23,20,17,.12);
  --rh-muted:#716a63;
  --rh-shadow:0 24px 70px rgba(37,28,20,.12);
  --rh-radius:24px;
  --rh-header-h:84px;
}

html{scroll-behavior:smooth;}
body.rh-body{
  margin:0;
  background:var(--rh-paper);
  color:var(--rh-ink);
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  font-size:16px;
  line-height:1.7;
  overflow-x:hidden;
}
body.rh-lock{overflow:hidden;}
body.rh-body h1,body.rh-body h2,body.rh-body h3,body.rh-body h4,body.rh-body h5,body.rh-body h6{
  font-family:Georgia,"Times New Roman",serif;
  color:var(--rh-ink);
  letter-spacing:-.02em;
}
body.rh-body a{color:inherit;}
body.rh-body a:hover{text-decoration:none;color:var(--rh-wine);}
.rh-page{min-height:100vh;background:var(--rh-paper);}
.rh-main{padding-top:var(--rh-header-h);}
.rh-container{width:min(1180px,calc(100% - 48px));margin:0 auto;}
.rh-section{padding:110px 0;position:relative;}
.rh-section-sm{padding:78px 0;}
.rh-section-dark{background:var(--rh-charcoal);color:#fff;}
.rh-section-ivory{background:var(--rh-ivory);}
.rh-eyebrow{
  display:inline-block;
  font-size:11px;
  line-height:1.2;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--rh-gold);
}
.rh-display{
  font-size:clamp(46px,7vw,92px);
  line-height:.98;
  font-weight:500;
  margin:18px 0 26px;
}
.rh-section-title{
  font-size:clamp(36px,4.4vw,58px);
  line-height:1.08;
  font-weight:500;
  margin:12px 0 22px;
}
.rh-lead{font-size:20px;line-height:1.7;color:#5f5750;max-width:720px;}
.rh-section-dark .rh-lead{color:rgba(255,255,255,.7);}
.rh-copy{color:#655e57;}
.rh-muted{color:var(--rh-muted);}

/* Header */
.rh-header{
  position:fixed;
  inset:0 0 auto 0;
  z-index:1100;
  height:var(--rh-header-h);
  background:rgba(255,253,250,.94);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(23,20,17,.07);
  transition:box-shadow .3s ease,background .3s ease;
}
.rh-header.is-scrolled{box-shadow:0 10px 34px rgba(25,20,16,.08);background:rgba(255,253,250,.98);}
.rh-header-inner{
  width:min(1280px,calc(100% - 44px));
  height:100%;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.rh-brand{
    display:flex;
    align-items:center;
    height:64px;
    width:auto;
    overflow:visible;
}
.rh-brand img{display:block;width:94px;height:58px;object-fit:contain;transition:transform .4s ease;}
.rh-brand:hover img{transform:scale(1.035);}
.rh-header-actions{display:flex;align-items:center;gap:9px;}
.rh-icon-button,.rh-menu-button{
  border:0;background:transparent;color:var(--rh-ink);cursor:pointer;
  width:48px;height:48px;border-radius:50%;display:grid;place-items:center;
  transition:background .25s ease,color .25s ease,transform .25s ease;
}
.rh-icon-button:hover,.rh-menu-button:hover{background:var(--rh-ivory);color:var(--rh-wine);transform:translateY(-1px);}
.rh-icon-button i{font-size:18px;}
.rh-menu-button{position:relative;gap:0;display:flex;flex-direction:column;justify-content:center;align-items:center;}
.rh-menu-button span{display:block;width:22px;height:1.5px;background:currentColor;margin:3px 0;transition:.25s ease;}

/* Drawer */
.rh-backdrop{position:fixed;inset:0;z-index:1190;background:rgba(17,14,12,.46);backdrop-filter:blur(3px);}
.rh-drawer{
  position:fixed;right:0;top:0;bottom:0;z-index:1200;
  width:min(470px,100vw);background:var(--rh-paper);padding:34px 34px 28px;
  transform:translateX(102%);transition:transform .46s cubic-bezier(.2,.8,.2,1);
  box-shadow:-30px 0 70px rgba(0,0,0,.16);overflow-y:auto;
}
.rh-drawer.is-open{transform:translateX(0);}
.rh-drawer-head{display:flex;justify-content:space-between;align-items:flex-start;padding-bottom:28px;border-bottom:1px solid var(--rh-line);}
.rh-drawer-head strong{display:block;font-family:Georgia,"Times New Roman",serif;font-size:27px;font-weight:500;margin-top:5px;}
.rh-drawer-nav{padding:18px 0 6px;}
.rh-nav-link{
  display:flex;align-items:center;justify-content:space-between;
  padding:17px 0;border-bottom:1px solid var(--rh-line);
  font-family:Georgia,"Times New Roman",serif;font-size:29px;line-height:1.2;
  transition:padding-left .25s ease,color .25s ease;
}
.rh-nav-link span{font-family:Arial,sans-serif;font-size:10px;letter-spacing:.13em;color:#aaa19a;}
.rh-nav-link:hover{padding-left:8px;color:var(--rh-wine);}
.rh-nav-group{border-bottom:1px solid var(--rh-line);}
.rh-nav-toggle,.rh-family-toggle{
  width:100%;border:0;background:transparent;display:flex;align-items:center;justify-content:space-between;cursor:pointer;color:var(--rh-ink);
}
.rh-nav-toggle{padding:17px 0;font-family:Georgia,"Times New Roman",serif;font-size:29px;line-height:1.2;}
.rh-nav-toggle i,.rh-family-toggle i{font-size:12px;color:var(--rh-gold);}
.rh-nav-panel{max-height:0;overflow:hidden;transition:max-height .45s ease;padding-left:10px;}
.rh-nav-panel.is-open{max-height:900px;padding-bottom:16px;}
.rh-family-group{border-top:1px solid rgba(23,20,17,.07);}
.rh-family-toggle{padding:13px 2px;font-size:14px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;}
.rh-family-panel{max-height:0;overflow:hidden;transition:max-height .35s ease;padding-left:14px;}
.rh-family-panel.is-open{max-height:430px;padding-bottom:10px;}
.rh-family-panel a{display:block;padding:8px 0;color:#625b54;font-size:14px;transition:padding-left .2s ease,color .2s ease;}
.rh-family-panel a:hover{padding-left:6px;color:var(--rh-wine);}
.rh-family-single{display:flex;align-items:center;justify-content:space-between;padding:13px 2px;font-size:14px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;border-top:1px solid rgba(23,20,17,.07);}
.rh-family-single i{font-size:11px;color:var(--rh-gold);}
.rh-view-all{display:inline-block;margin:15px 0 4px;font-size:13px;font-weight:700;color:var(--rh-wine);border-bottom:1px solid rgba(106,38,54,.35);}
.rh-drawer-foot{margin-top:28px;padding:23px 0 0;border-top:1px solid var(--rh-line);display:flex;flex-direction:column;gap:5px;}
.rh-drawer-foot span{font-size:11px;font-weight:800;letter-spacing:.13em;text-transform:uppercase;color:var(--rh-gold);}
.rh-drawer-foot a{font-size:15px;}
.rh-drawer-foot small{color:#827970;margin-top:4px;}

/* Search */
.rh-search-overlay{
  position:fixed;inset:0;z-index:1250;background:rgba(247,243,236,.98);
  display:flex;align-items:flex-start;justify-content:center;padding:10vh 24px 40px;
  opacity:0;visibility:hidden;transition:opacity .28s ease,visibility .28s ease;
  overflow-y:auto;
}
.rh-search-overlay.is-open{opacity:1;visibility:visible;}
.rh-search-shell{width:min(900px,100%);transform:translateY(16px);transition:transform .32s ease;}
.rh-search-overlay.is-open .rh-search-shell{transform:translateY(0);}
.rh-search-head{display:flex;align-items:flex-start;justify-content:space-between;margin-bottom:34px;}
.rh-search-head h2{font-size:clamp(34px,5vw,58px);font-weight:500;margin:7px 0 0;}
.rh-search-field{
  display:grid;grid-template-columns:30px 1fr;align-items:center;gap:12px;
  background:#fff;border:1px solid rgba(23,20,17,.13);border-radius:18px;padding:10px 20px;
  box-shadow:0 20px 55px rgba(40,31,24,.08);
}
.rh-search-field i{font-size:20px;color:var(--rh-wine);}
.rh-search-field input{height:58px;border:0;outline:0;background:transparent;width:100%;font-size:20px;color:var(--rh-ink);}
/* Search input hardening: legacy theme styles collapse search inputs to 0x0. */
#rhSearchInput{
  display:block !important;
  width:100% !important;
  min-width:0 !important;
  height:58px !important;
  min-height:58px !important;
  padding:0 4px !important;
  margin:0 !important;
  border:0 !important;
  border-radius:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  color:#171411 !important;
  -webkit-text-fill-color:#171411 !important;
  caret-color:#6a2636 !important;
  opacity:1 !important;
  text-align:left !important;
  font-family:Arial,Helvetica,sans-serif !important;
  font-size:18px !important;
  line-height:58px !important;
  pointer-events:auto !important;
  position:relative;
  z-index:2;
}
#rhSearchInput::placeholder{color:#9a9189 !important;-webkit-text-fill-color:#9a9189 !important;opacity:1 !important;}
.rh-search-field{cursor:text;}
.rh-search-hint{font-size:13px;color:#8a8179;margin:12px 4px 24px;}
.rh-search-results{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;}
.rh-search-result{display:flex;align-items:center;justify-content:space-between;background:#fff;border:1px solid rgba(23,20,17,.09);border-radius:14px;padding:15px 17px;transition:.25s ease;}
.rh-search-result:hover{border-color:rgba(185,146,88,.65);transform:translateY(-2px);box-shadow:0 13px 32px rgba(40,31,24,.07);}
.rh-search-result strong{display:block;font-size:15px;}
.rh-search-result small{color:#8d837b;text-transform:uppercase;letter-spacing:.1em;font-size:9px;}
.rh-search-result i{color:var(--rh-gold);}
.rh-search-empty{grid-column:1/-1;padding:28px 0;color:#7f766e;}

/* Buttons */
.rh-btn{display:inline-flex;align-items:center;justify-content:center;gap:10px;min-height:52px;padding:0 25px;border-radius:999px;border:1px solid transparent;font-weight:800;font-size:12px;letter-spacing:.1em;text-transform:uppercase;transition:.28s ease;cursor:pointer;}
.rh-btn-primary{background:var(--rh-wine);color:#fff!important;border-color:var(--rh-wine);}
.rh-btn-primary:hover{background:var(--rh-wine-dark);border-color:var(--rh-wine-dark);transform:translateY(-2px);box-shadow:0 12px 26px rgba(106,38,54,.2);}
.rh-btn-secondary{background:transparent;border-color:rgba(23,20,17,.22);color:var(--rh-ink)!important;}
.rh-btn-secondary:hover{border-color:var(--rh-gold);color:var(--rh-wine)!important;transform:translateY(-2px);}
.rh-btn-light{background:#fff;color:var(--rh-ink)!important;}
.rh-btn-light:hover{background:var(--rh-ivory);transform:translateY(-2px);}

/* Hero */
.rh-hero{position:relative;min-height:calc(100vh - var(--rh-header-h));display:flex;align-items:center;overflow:hidden;background:linear-gradient(118deg,#f8f4ed 0%,#f8f4ed 58%,#211d1a 58%,#211d1a 100%);}
.rh-hero:before{content:"";position:absolute;left:-130px;bottom:-180px;width:430px;height:430px;border:1px solid rgba(185,146,88,.18);border-radius:50%;box-shadow:0 0 0 50px rgba(185,146,88,.035),0 0 0 105px rgba(185,146,88,.025);}
.rh-hero-grid{display:grid;grid-template-columns:1.05fr .95fr;align-items:center;gap:70px;position:relative;z-index:1;padding:76px 0 72px;}
.rh-hero-copy{padding-right:22px;}
.rh-hero-copy p{font-size:19px;color:#635b54;max-width:620px;margin-bottom:32px;}
.rh-hero-actions{display:flex;gap:12px;flex-wrap:wrap;}
.rh-hero-meta{display:flex;gap:30px;margin-top:48px;padding-top:24px;border-top:1px solid var(--rh-line);max-width:590px;}
.rh-hero-meta div{display:flex;flex-direction:column;gap:2px;}
.rh-hero-meta strong{font-size:13px;letter-spacing:.07em;text-transform:uppercase;}
.rh-hero-meta span{font-size:12px;color:#8a8179;}
.rh-hero-visual{position:relative;min-height:570px;display:flex;align-items:center;justify-content:center;}
.rh-product-stack{position:relative;width:min(480px,100%);height:520px;}
.rh-pack-card{position:absolute;background:#fff;border-radius:22px;padding:16px;box-shadow:0 32px 80px rgba(0,0,0,.25);overflow:hidden;transition:transform .45s cubic-bezier(.2,.8,.2,1),box-shadow .45s ease;}
.rh-pack-card img{display:block;width:100%;height:100%;object-fit:contain;}
.rh-pack-card.card-blue{width:292px;height:355px;left:12px;top:90px;transform:rotate(-5deg);animation:rhFloat 5.8s ease-in-out infinite;}
.rh-pack-card.card-red{width:260px;height:326px;right:0;top:30px;transform:rotate(5deg);animation:rhFloat2 6.4s ease-in-out infinite;}
.rh-pack-card:hover{z-index:5!important;box-shadow:0 38px 95px rgba(0,0,0,.34);}
.rh-pack-card.card-blue:hover{transform:rotate(-2deg) translateY(-10px) scale(1.025);}
.rh-pack-card.card-red:hover{transform:rotate(2deg) translateY(-10px) scale(1.025);}
.rh-visual-label{position:absolute;right:12px;bottom:20px;color:#fff;font-size:10px;letter-spacing:.18em;text-transform:uppercase;writing-mode:vertical-rl;opacity:.62;}
@keyframes rhFloat{0%,100%{translate:0 0}50%{translate:0 -8px}}
@keyframes rhFloat2{0%,100%{translate:0 0}50%{translate:0 10px}}

/* Intro & feature layouts */
.rh-split{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;}
.rh-image-frame{position:relative;border-radius:var(--rh-radius);overflow:hidden;background:#fff;box-shadow:var(--rh-shadow);}
.rh-image-frame img{display:block;width:100%;height:100%;object-fit:cover;transition:transform .8s cubic-bezier(.2,.8,.2,1);}
.rh-image-frame:hover img{transform:scale(1.035);}
.rh-image-frame.rh-square{aspect-ratio:1/1;}
.rh-image-frame.rh-wide{aspect-ratio:16/10;}
.rh-image-accent{position:absolute;inset:auto 20px 20px auto;background:rgba(255,253,250,.92);backdrop-filter:blur(9px);padding:14px 17px;border-radius:12px;font-size:11px;text-transform:uppercase;letter-spacing:.12em;font-weight:800;}
.rh-stat-row{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--rh-line);border:1px solid var(--rh-line);border-radius:18px;overflow:hidden;margin-top:34px;}
.rh-stat{background:#fff;padding:22px 20px;}
.rh-stat strong{font-family:Georgia,"Times New Roman",serif;font-size:28px;font-weight:500;display:block;color:var(--rh-wine);}
.rh-stat span{font-size:11px;text-transform:uppercase;letter-spacing:.1em;color:#7d746d;}

/* Category cards */
.rh-category-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px;margin-top:42px;}
.rh-category-card{position:relative;min-height:440px;border-radius:22px;overflow:hidden;background:#eee;isolation:isolate;color:#fff!important;box-shadow:0 18px 45px rgba(28,22,18,.12);}
.rh-category-card:before{content:"";position:absolute;inset:0;background:linear-gradient(to top,rgba(16,13,11,.88),rgba(16,13,11,.06) 63%);z-index:1;transition:opacity .35s ease;}
.rh-category-card img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform .7s cubic-bezier(.2,.8,.2,1);}
.rh-category-content{position:absolute;z-index:2;left:22px;right:22px;bottom:22px;transition:transform .35s ease;}
.rh-category-content small{font-size:10px;letter-spacing:.15em;text-transform:uppercase;color:var(--rh-gold-soft);}
.rh-category-content h3{font-size:30px;color:#fff;margin:4px 0 5px;transition:transform .3s ease;font-weight:500;}
.rh-category-content span{font-size:13px;color:rgba(255,255,255,.68);}
.rh-category-card:hover img{transform:scale(1.055);}
.rh-category-card:hover .rh-category-content{transform:translateY(-8px);}
.rh-category-card:hover .rh-category-content h3{transform:scale(1.04);transform-origin:left center;}

/* Product grid */
.rh-page-hero{padding:92px 0 66px;background:var(--rh-ivory);border-bottom:1px solid var(--rh-line);}
.rh-page-hero .rh-section-title{max-width:780px;margin-bottom:14px;}
.rh-breadcrumb{display:flex;gap:8px;align-items:center;font-size:12px;text-transform:uppercase;letter-spacing:.1em;color:#8b8179;margin-bottom:22px;}
.rh-breadcrumb a{color:#6e665f;}
.rh-product-section{padding:86px 0 12px;scroll-margin-top:110px;}
.rh-product-section-head{display:flex;align-items:end;justify-content:space-between;gap:30px;padding-bottom:20px;border-bottom:1px solid var(--rh-line);margin-bottom:28px;}
.rh-product-section-head h2{font-size:42px;font-weight:500;margin:3px 0 0;}
.rh-product-section-head p{max-width:440px;margin:0;color:#756d65;font-size:14px;}
.rh-product-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px;}
.rh-product-card{display:flex;flex-direction:column;background:#fff;border:1px solid rgba(23,20,17,.09);border-radius:20px;overflow:hidden;transition:transform .35s ease,box-shadow .35s ease,border-color .35s ease;}
.rh-product-card:hover{transform:translateY(-7px);box-shadow:0 22px 54px rgba(35,27,21,.11);border-color:rgba(185,146,88,.48);}
.rh-product-media{position:relative;aspect-ratio:4/3;background:#f5f3ef;overflow:hidden;}
.rh-product-media img{width:100%;height:100%;object-fit:contain;transition:transform .65s cubic-bezier(.2,.8,.2,1);}
.rh-product-card:hover .rh-product-media img{transform:scale(1.045);}
.rh-product-family{position:absolute;top:14px;left:14px;background:rgba(255,255,255,.9);backdrop-filter:blur(8px);padding:7px 10px;border-radius:999px;font-size:9px;font-weight:800;text-transform:uppercase;letter-spacing:.12em;}
.rh-product-body{padding:20px 20px 22px;display:flex;flex-direction:column;flex:1;}
.rh-product-body h3{font-size:24px;font-weight:500;margin:0 0 8px;transition:font-size .25s ease,color .25s ease;}
.rh-product-card:hover .rh-product-body h3{color:var(--rh-wine);}
.rh-product-body p{font-size:13px;color:#716961;margin:0 0 18px;}
.rh-product-link{margin-top:auto;font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.11em;color:var(--rh-wine)!important;display:inline-flex;align-items:center;gap:8px;}
.rh-product-link i{transition:transform .25s ease;}
.rh-product-card:hover .rh-product-link i{transform:translateX(4px);}

/* Product detail */
.rh-product-detail{padding:80px 0 100px;}
.rh-product-detail-grid{display:grid;grid-template-columns:1.08fr .92fr;gap:74px;align-items:center;}
.rh-product-detail-media{background:#f5f3ef;border-radius:24px;overflow:hidden;min-height:540px;display:grid;place-items:center;border:1px solid var(--rh-line);}
.rh-product-detail-media img{width:100%;height:100%;max-height:620px;object-fit:contain;transition:transform .7s cubic-bezier(.2,.8,.2,1);}
.rh-product-detail-media:hover img{transform:scale(1.025);}
.rh-product-detail-copy h1{font-size:clamp(44px,5vw,68px);font-weight:500;line-height:1.03;margin:12px 0 20px;}
.rh-product-detail-copy .rh-lead{font-size:18px;}
.rh-product-accent{height:3px;width:54px;border-radius:999px;margin:22px 0;background:var(--product-accent,var(--rh-gold));}
.rh-detail-points{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin:30px 0;}
.rh-detail-point{border:1px solid var(--rh-line);border-radius:14px;padding:16px;}
.rh-detail-point small{display:block;font-size:9px;text-transform:uppercase;letter-spacing:.12em;color:#9a9087;margin-bottom:4px;}
.rh-detail-point strong{font-size:14px;}
.rh-related{padding:84px 0 110px;background:var(--rh-ivory);}

/* About */
.rh-values-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:38px;}
.rh-value-card{background:#fff;border:1px solid var(--rh-line);border-radius:18px;padding:28px;}
.rh-value-icon{width:44px;height:44px;border-radius:50%;display:grid;place-items:center;background:var(--rh-ivory);color:var(--rh-wine);margin-bottom:18px;}
.rh-value-card h3{font-size:24px;font-weight:500;margin:0 0 10px;}
.rh-value-card p{font-size:14px;color:#716961;margin:0;}
.rh-trade-band{background:linear-gradient(125deg,var(--rh-charcoal),#352b26);color:#fff;border-radius:28px;padding:56px;display:grid;grid-template-columns:1.25fr .75fr;gap:30px;align-items:center;overflow:hidden;position:relative;}
.rh-trade-band:after{content:"";position:absolute;width:300px;height:300px;border:1px solid rgba(185,146,88,.22);border-radius:50%;right:-90px;top:-120px;}
.rh-trade-band h2{color:#fff;font-size:42px;font-weight:500;margin:8px 0 12px;}
.rh-trade-band p{color:rgba(255,255,255,.7);margin:0;}
.rh-trade-band .rh-btn{justify-self:end;position:relative;z-index:2;}

/* Contact */
.rh-contact-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:70px;align-items:start;}
.rh-contact-card{background:var(--rh-charcoal);color:#fff;border-radius:24px;padding:40px;box-shadow:var(--rh-shadow);}
.rh-contact-card h2{color:#fff;font-size:38px;font-weight:500;margin:8px 0 22px;}
.rh-contact-list{display:flex;flex-direction:column;gap:4px;margin-top:28px;}
.rh-contact-item{display:grid;grid-template-columns:42px 1fr;gap:13px;align-items:start;padding:17px 0;border-top:1px solid rgba(255,255,255,.12);}
.rh-contact-item i{width:38px;height:38px;border-radius:50%;display:grid;place-items:center;background:rgba(185,146,88,.13);color:var(--rh-gold-soft);}
.rh-contact-item small{display:block;text-transform:uppercase;letter-spacing:.11em;font-size:9px;color:rgba(255,255,255,.48);margin-bottom:3px;}
.rh-contact-item a,.rh-contact-item span{color:#fff;font-size:15px;}
.rh-inquiry-panel{background:#fff;border:1px solid var(--rh-line);border-radius:24px;padding:40px;}
.rh-inquiry-panel h2{font-size:40px;font-weight:500;margin:8px 0 14px;}
.rh-inquiry-panel p{color:#746c64;}
.rh-inquiry-steps{margin:30px 0;display:grid;gap:12px;}
.rh-inquiry-step{display:grid;grid-template-columns:32px 1fr;gap:13px;align-items:start;}
.rh-inquiry-step span{width:30px;height:30px;border:1px solid var(--rh-gold-soft);border-radius:50%;display:grid;place-items:center;font-size:11px;color:var(--rh-wine);font-weight:800;}
.rh-inquiry-step strong{font-size:14px;display:block;}
.rh-inquiry-step small{color:#80776f;}

/* Blog */
.rh-blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;}
.rh-blog-card{background:#fff;border:1px solid var(--rh-line);border-radius:20px;overflow:hidden;transition:.35s ease;}
.rh-blog-card:hover{transform:translateY(-6px);box-shadow:0 22px 50px rgba(31,24,19,.1);}
.rh-blog-card img{width:100%;height:220px;object-fit:cover;transition:transform .6s ease;}
.rh-blog-card:hover img{transform:scale(1.04);}
.rh-blog-content{padding:22px;}
.rh-blog-content small{font-size:9px;text-transform:uppercase;letter-spacing:.12em;color:var(--rh-gold);font-weight:800;}
.rh-blog-content h2{font-size:25px;font-weight:500;line-height:1.22;margin:8px 0 10px;}
.rh-blog-content p{font-size:13px;color:#776f67;}

/* Footer */
.rh-footer{background:#171411;color:#fff;margin-top:0;}
.rh-footer-main{padding:76px 0 58px;}
.rh-footer-grid{display:grid;grid-template-columns:1.45fr .7fr .7fr 1fr;gap:50px;}
.rh-footer-logo{display:block;width:95px;height:66px;margin-bottom:18px;}
.rh-footer-logo img{width:100%;height:100%;object-fit:contain;}
.rh-footer-brand p{color:rgba(255,255,255,.66);font-size:13px;max-width:390px;}
.rh-footer-brand .rh-footer-note{font-size:11px;color:rgba(255,255,255,.4);margin-top:18px;}
.rh-footer-column{display:flex;flex-direction:column;gap:9px;}
.rh-footer-column h3{font-family:Arial,sans-serif!important;font-size:10px!important;text-transform:uppercase;letter-spacing:.14em;color:var(--rh-gold-soft)!important;margin:8px 0 10px!important;font-weight:800!important;}
.rh-footer-column a,.rh-footer-column span{font-size:13px;color:rgba(255,255,255,.72);}
.rh-footer-column a:hover{color:#fff;}
.rh-footer-search{border:0;background:transparent;color:rgba(255,255,255,.72);text-align:left;padding:0;font-size:13px;cursor:pointer;}
.rh-footer-search:hover{color:#fff;}
.rh-footer-search i{margin-right:5px;}
.rh-footer-bottom{border-top:1px solid rgba(255,255,255,.08);padding:20px 0;}
.rh-footer-bottom .rh-container{display:flex;justify-content:space-between;gap:20px;color:rgba(255,255,255,.38);font-size:10px;letter-spacing:.04em;}
#totop{background:var(--rh-wine)!important;border-radius:50%!important;width:44px!important;height:44px!important;line-height:44px!important;}

/* Age gate */
.rh-age-gate{position:fixed;inset:0;z-index:2000;background:rgba(18,15,13,.86);backdrop-filter:blur(12px);display:grid;place-items:center;padding:24px;opacity:0;visibility:hidden;transition:.3s ease;}
.rh-age-gate.is-open{opacity:1;visibility:visible;}
.rh-age-card{width:min(560px,100%);background:var(--rh-paper);border-radius:26px;padding:42px;text-align:center;box-shadow:0 35px 100px rgba(0,0,0,.28);}
.rh-age-logo{width:82px;height:55px;object-fit:contain;margin-bottom:16px;}
.rh-age-card h2{font-size:38px;font-weight:500;margin:10px 0 14px;}
.rh-age-card p{color:#6f675f;margin-bottom:28px;}
.rh-age-actions{display:flex;gap:10px;justify-content:center;}
.rh-age-card small{display:block;color:#9a9088;margin-top:20px;font-size:10px;}

/* Reveal */
.rh-reveal{opacity:0;transform:translateY(24px);transition:opacity .75s ease,transform .75s cubic-bezier(.2,.8,.2,1);}
.rh-reveal.is-visible{opacity:1;transform:translateY(0);}
.rh-reveal-delay-1{transition-delay:.08s;}.rh-reveal-delay-2{transition-delay:.16s;}.rh-reveal-delay-3{transition-delay:.24s;}

/* Legacy cleanup / page title */
.ttm-page-title-row{margin-top:0!important;}
body.rh-body .ttm-page-title-row{background-image:none!important;background:var(--rh-ivory)!important;padding:62px 0!important;}
body.rh-body .ttm-page-title-row .section-overlay{display:none!important;}
body.rh-body .ttm-page-title-row .title{color:var(--rh-ink)!important;font-size:48px!important;font-weight:500!important;}
body.rh-body .breadcrumb-wrapper{color:#756c64!important;}
body.rh-body .ttm-row{padding-top:80px;padding-bottom:80px;}

@media (max-width:1100px){
  .rh-hero{background:linear-gradient(118deg,#f8f4ed 0%,#f8f4ed 62%,#211d1a 62%,#211d1a 100%);}
  .rh-hero-grid{gap:38px;}
  .rh-product-stack{transform:scale(.9);transform-origin:center;}
  .rh-category-grid{grid-template-columns:repeat(2,1fr);}
  .rh-footer-grid{grid-template-columns:1.4fr 1fr 1fr;}
  .rh-footer-contact{grid-column:2/4;}
}

@media (max-width:900px){
  :root{--rh-header-h:74px;}
  .rh-container{width:min(100% - 34px,1180px);}
  .rh-header-inner{width:calc(100% - 26px);}
  .rh-brand{width:auto;height:56px;}.rh-brand img{width:84px;height:52px;}
  .rh-hero{background:var(--rh-ivory);min-height:auto;}
  .rh-hero-grid{grid-template-columns:1fr;padding:80px 0 70px;}
  .rh-hero-copy{padding-right:0;}
  .rh-hero-visual{min-height:480px;background:var(--rh-charcoal);border-radius:28px;overflow:hidden;}
  .rh-product-stack{height:460px;}
  .rh-split,.rh-product-detail-grid,.rh-contact-grid{grid-template-columns:1fr;gap:44px;}
  .rh-product-detail-media{min-height:420px;}
  .rh-values-grid{grid-template-columns:1fr 1fr;}
  .rh-trade-band{grid-template-columns:1fr;padding:40px;}
  .rh-trade-band .rh-btn{justify-self:start;}
  .rh-product-grid,.rh-blog-grid{grid-template-columns:repeat(2,1fr);}
  .rh-footer-grid{grid-template-columns:1fr 1fr;}
  .rh-footer-contact{grid-column:auto;}
}

@media (max-width:640px){
  .rh-container{width:calc(100% - 28px);}
  .rh-section{padding:78px 0;}
  .rh-search-overlay{padding:7vh 16px 30px;}
  .rh-search-results{grid-template-columns:1fr;}
  .rh-search-field input{font-size:16px;}
  .rh-drawer{padding:26px 22px;}
  .rh-nav-link,.rh-nav-toggle{font-size:26px;}
  .rh-hero-grid{padding-top:56px;}
  .rh-display{font-size:49px;}
  .rh-hero-meta{display:grid;grid-template-columns:1fr 1fr;gap:18px;}
  .rh-hero-visual{min-height:420px;}
  .rh-product-stack{width:330px;height:390px;transform:none;}
  .rh-pack-card.card-blue{width:210px;height:270px;left:8px;top:85px;}
  .rh-pack-card.card-red{width:190px;height:245px;right:5px;top:35px;}
  .rh-category-grid,.rh-product-grid,.rh-blog-grid,.rh-values-grid{grid-template-columns:1fr;}
  .rh-category-card{min-height:390px;}
  .rh-product-section-head{align-items:flex-start;flex-direction:column;gap:8px;}
  .rh-detail-points{grid-template-columns:1fr;}
  .rh-stat-row{grid-template-columns:1fr;}
  .rh-footer-grid{grid-template-columns:1fr;gap:30px;}
  .rh-footer-bottom .rh-container{flex-direction:column;gap:6px;}
  .rh-age-card{padding:32px 22px;}
  .rh-age-card h2{font-size:31px;}
  .rh-age-actions{flex-direction:column;}
}

@media (prefers-reduced-motion:reduce){
  *,*:before,*:after{scroll-behavior:auto!important;animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important;}
}

/* =========================================================
   V3 refinements — quieter typography, richer drawer,
   editorial hero, family-entry art and enquiry form
   ========================================================= */

/* More elegant type scale */
.rh-display-v3{
  font-size:clamp(48px,5.4vw,76px);
  line-height:.98;
  letter-spacing:-.035em;
  max-width:660px;
  margin:16px 0 24px;
}
.rh-display-v3 em{font-weight:400;color:var(--rh-wine);font-size:.72em;letter-spacing:-.025em;}
.rh-hero-copy p{font-size:17px;line-height:1.78;max-width:575px;}
.rh-section-title{font-size:clamp(34px,3.8vw,52px);letter-spacing:-.025em;}

/* Luxury dark drawer */
.rh-drawer{
  background:linear-gradient(155deg,#171310 0%,#211717 55%,#311923 100%);
  color:#f7f0e7;
  box-shadow:-35px 0 90px rgba(0,0,0,.34);
}
.rh-drawer-head{border-color:rgba(255,255,255,.11);}
.rh-drawer-head .rh-eyebrow{color:#c9a66d;}
.rh-drawer-head strong{color:#fff;font-size:24px;letter-spacing:-.015em;}
.rh-drawer .rh-icon-button{color:#f6eee4;}
.rh-drawer .rh-icon-button:hover{background:rgba(255,255,255,.07);color:#d6b57d;}
.rh-nav-link,.rh-nav-toggle{color:#f6eee4!important;font-size:24px;letter-spacing:-.01em;}
.rh-nav-link,.rh-nav-group{border-color:rgba(255,255,255,.10);}
.rh-nav-link span{color:rgba(255,255,255,.35);}
.rh-nav-link:hover{color:#d6b57d!important;}
.rh-family-group,.rh-family-single{border-color:rgba(255,255,255,.08);}
.rh-family-toggle,.rh-family-single{color:#d9bb88!important;font-size:12px;letter-spacing:.16em;font-weight:700;}
.rh-family-panel a{color:rgba(255,255,255,.66);font-family:Georgia,"Times New Roman",serif;font-size:15px;padding:7px 0;}
.rh-family-panel a:hover{color:#fff;}
.rh-view-all{color:#d9bb88!important;border-color:rgba(217,187,136,.45);font-size:12px;letter-spacing:.06em;}
.rh-drawer-foot{border-color:rgba(255,255,255,.11);}
.rh-drawer-foot span{color:#c9a66d;}
.rh-drawer-foot a{color:#f6eee4;font-family:Georgia,"Times New Roman",serif;font-size:15px;}
.rh-drawer-foot small{color:rgba(255,255,255,.48);}
.rh-instagram-link i{margin-right:7px;color:#d6b57d;}

/* Editorial hero */
.rh-hero-v3{background:linear-gradient(112deg,#f8f4ed 0%,#f8f4ed 55%,#1a1512 55%,#1a1512 100%);}
.rh-hero-grid-v3{grid-template-columns:1fr .92fr;gap:64px;padding-top:68px;padding-bottom:68px;}
.rh-hero-visual-v3{min-height:560px;}
.rh-hero-editorial{
  display:block;position:relative;width:min(500px,100%);aspect-ratio:1.08/1;
  border-radius:28px;overflow:hidden;background:#1d1713;
  box-shadow:0 34px 90px rgba(0,0,0,.31);border:1px solid rgba(216,196,162,.20);
}
.rh-hero-editorial:after{content:"";position:absolute;inset:0;background:linear-gradient(to top,rgba(17,12,9,.55),transparent 50%);pointer-events:none;}
.rh-hero-editorial img{width:100%;height:100%;display:block;object-fit:cover;transition:transform .8s cubic-bezier(.2,.8,.2,1);}
.rh-hero-editorial:hover img{transform:scale(1.025);}
.rh-hero-editorial-tag{position:absolute;z-index:2;left:25px;bottom:22px;color:#f6ecdf;font-size:10px;letter-spacing:.19em;text-transform:uppercase;}

/* Family cards are now true collection-entry cards */
.rh-collection-heading{max-width:720px;}
.rh-category-grid-v3{grid-template-columns:repeat(2,minmax(0,1fr));gap:22px;}
.rh-category-card-v3{
  display:grid;grid-template-columns:1.28fr .72fr;min-height:310px;background:#fff;
  color:var(--rh-ink)!important;border-radius:18px;border:1px solid rgba(23,20,17,.08);
  box-shadow:0 16px 42px rgba(31,24,19,.08);isolation:auto;
}
.rh-category-card-v3:before{display:none;}
.rh-category-card-v3 .rh-category-image{position:relative;overflow:hidden;min-height:310px;background:#201a16;}
.rh-category-card-v3 .rh-category-image img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform .65s cubic-bezier(.2,.8,.2,1);}
.rh-category-card-v3 .rh-category-content{position:static;padding:28px 24px;display:flex;flex-direction:column;justify-content:center;transform:none!important;}
.rh-category-card-v3 .rh-category-content small{color:var(--rh-gold);font-size:9px;}
.rh-category-card-v3 .rh-category-content h3{color:var(--rh-ink);font-size:31px;margin:8px 0 9px;line-height:1;transform:none!important;}
.rh-category-card-v3 .rh-category-content span{color:#716961;font-size:12px;line-height:1.55;}
.rh-category-card-v3 .rh-category-content b{margin-top:24px;font-size:10px;letter-spacing:.12em;text-transform:uppercase;color:var(--rh-wine);font-weight:800;}
.rh-category-card-v3 .rh-category-content b i{margin-left:7px;font-size:9px;}
.rh-category-card-v3:hover{transform:translateY(-4px);box-shadow:0 24px 55px rgba(31,24,19,.12);color:var(--rh-ink)!important;}
.rh-category-card-v3:hover .rh-category-image img{transform:scale(1.035);}

/* Message form */
.rh-message-panel{background:#fff;border:1px solid var(--rh-line);border-radius:24px;padding:40px;box-shadow:0 18px 50px rgba(31,24,19,.06);}
.rh-message-panel h2{font-size:40px;font-weight:500;margin:8px 0 13px;}
.rh-message-panel > p{color:#746c64;margin-bottom:24px;}
.rh-message-form{display:grid;gap:16px;margin-top:24px;}
.rh-form-row{display:grid;grid-template-columns:1fr 1fr;gap:15px;}
.rh-message-form label{display:block;margin:0;}
.rh-message-form label > span{display:block;font-size:10px;text-transform:uppercase;letter-spacing:.12em;font-weight:800;color:#756b62;margin:0 0 6px 2px;}
.rh-message-form input,.rh-message-form textarea{width:100%;border:1px solid rgba(23,20,17,.14);background:#fffdfa;border-radius:12px;padding:13px 14px;color:var(--rh-ink);outline:0;transition:border-color .2s ease,box-shadow .2s ease;}
.rh-message-form input{height:48px;}
.rh-message-form textarea{resize:vertical;min-height:140px;line-height:1.6;}
.rh-message-form input:focus,.rh-message-form textarea:focus{border-color:rgba(185,146,88,.8);box-shadow:0 0 0 3px rgba(185,146,88,.10);}
.rh-form-status{padding:13px 15px;border-radius:12px;font-size:13px;margin:14px 0;}
.rh-form-success{background:#eef7ef;color:#315d35;border:1px solid #cfe5d1;}
.rh-form-error{background:#fff1f1;color:#7b3030;border:1px solid #efd0d0;}
.rh-form-status i{margin-right:7px;}
.rh-hp{position:absolute!important;left:-99999px!important;width:1px!important;height:1px!important;overflow:hidden!important;}
.rh-social-link i{margin-right:7px;color:var(--rh-gold-soft);}

@media (max-width:1000px){
  .rh-category-grid-v3{grid-template-columns:1fr;}
  .rh-category-card-v3{grid-template-columns:1.25fr .75fr;}
}
@media (max-width:900px){
  .rh-hero-v3{background:var(--rh-ivory);}
  .rh-hero-grid-v3{grid-template-columns:1fr;}
  .rh-hero-visual-v3{min-height:auto;background:transparent;border-radius:0;}
  .rh-hero-editorial{width:100%;max-width:650px;margin:0 auto;aspect-ratio:1.18/1;}
}
@media (max-width:640px){
  .rh-display-v3{font-size:48px;}
  .rh-display-v3 em{font-size:.68em;}
  .rh-nav-link,.rh-nav-toggle{font-size:22px;}
  .rh-category-card-v3{grid-template-columns:1fr;}
  .rh-category-card-v3 .rh-category-image{min-height:240px;}
  .rh-category-card-v3 .rh-category-content{padding:23px 22px 26px;}
  .rh-form-row{grid-template-columns:1fr;}
  .rh-message-panel{padding:28px 21px;}
  .rh-message-panel h2{font-size:34px;}
}


/* =========================================================
   V4 — refined typography & spacing
   ========================================================= */
:root{
  --rh-elegant-serif: "Baskerville", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
}

/* Quieter luxury typography throughout */
.rh-drawer-head strong,
.rh-nav-link,
.rh-nav-toggle,
.rh-family-panel a,
.rh-drawer-foot a,
.rh-display-v3,
.rh-section-title,
.rh-card-title,
.rh-product-title,
.rh-page-title,
.rh-search-head h2,
.rh-age-card h2{
  font-family:var(--rh-elegant-serif);
  font-weight:400;
}

/* Navigation should feel refined, not oversized */
.rh-drawer{width:min(430px,100vw);padding:30px 34px 26px;}
.rh-drawer-head{padding-bottom:22px;}
.rh-drawer-head strong{font-size:20px;line-height:1.2;letter-spacing:.005em;margin-top:6px;}
.rh-drawer-nav{padding:12px 0 4px;}
.rh-nav-link{padding:13px 0;font-size:19px;line-height:1.25;letter-spacing:.002em;}
.rh-nav-toggle{padding:13px 0;font-size:19px;line-height:1.25;letter-spacing:.002em;}
.rh-nav-link span{font-size:8px;letter-spacing:.16em;}
.rh-nav-panel{padding-left:7px;}
.rh-family-toggle,.rh-family-single{padding:10px 1px;font-size:10.5px;letter-spacing:.19em;font-weight:600;}
.rh-family-panel{padding-left:11px;}
.rh-family-panel a{font-size:13px;line-height:1.3;padding:6px 0;letter-spacing:.01em;}
.rh-view-all{margin-top:12px;font-size:10.5px;letter-spacing:.10em;font-weight:600;}
.rh-drawer-foot{margin-top:21px;padding-top:18px;gap:6px;}
.rh-drawer-foot span{font-size:9.5px;letter-spacing:.18em;font-weight:600;}
.rh-drawer-foot a{font-size:13px;line-height:1.4;}
.rh-drawer-foot small{font-size:11px;}

/* Less dominant homepage and section titles */
.rh-display-v3{font-size:clamp(40px,4.7vw,64px);line-height:1.01;letter-spacing:-.025em;max-width:620px;margin:14px 0 20px;}
.rh-display-v3 em{font-size:.68em;letter-spacing:-.012em;}
.rh-hero-copy p{font-size:15.5px;line-height:1.72;max-width:560px;}
.rh-section-title{font-size:clamp(29px,3vw,43px);line-height:1.12;letter-spacing:-.015em;}
.rh-eyebrow{font-size:9.5px;letter-spacing:.20em;}

/* More comfortable collection titles */
.rh-family-entry h3,.rh-collection-card h3{font-family:var(--rh-elegant-serif);font-weight:400;letter-spacing:.01em;}

@media (max-width: 767px){
  .rh-drawer{padding:24px 24px 22px;width:min(390px,100vw);}
  .rh-drawer-head strong{font-size:19px;}
  .rh-nav-link,.rh-nav-toggle{font-size:18px;padding:12px 0;}
  .rh-family-toggle,.rh-family-single{font-size:10px;padding:9px 0;}
  .rh-family-panel a{font-size:12.5px;}
  .rh-display-v3{font-size:clamp(37px,11vw,52px);}
  .rh-section-title{font-size:clamp(28px,8vw,38px);}
}


/* V5 — editorial navigation refinement: remove template-like cues */
.rh-drawer-head strong{
  font-size:17px;
  letter-spacing:.035em;
  font-weight:400;
}
.rh-drawer-nav{padding-top:16px;}
.rh-nav-link,
.rh-nav-toggle{
  font-size:17px;
  line-height:1.25;
  padding:12px 0;
  letter-spacing:.012em;
  font-weight:400;
}
.rh-nav-link{justify-content:flex-start;}
.rh-nav-link:after{
  content:"";
  width:0;
  height:1px;
  margin-left:12px;
  background:var(--rh-gold-soft);
  opacity:.7;
  transition:width .22s ease;
}
.rh-nav-link:hover:after{width:24px;}
.rh-nav-link span{display:none!important;}
.rh-family-toggle,.rh-family-single{
  font-size:10px;
  letter-spacing:.16em;
  padding:9px 0;
  font-weight:600;
}
.rh-family-panel a{
  font-size:12.5px;
  padding:5px 0;
  line-height:1.35;
}
.rh-view-all{font-size:9.5px;letter-spacing:.13em;}
.rh-drawer-foot{border-top:1px solid rgba(255,255,255,.10);}
.rh-drawer-foot a{font-size:12.5px;}
.rh-drawer-foot small{font-size:10.5px;}

@media (max-width:767px){
  .rh-drawer-head strong{font-size:16px;}
  .rh-nav-link,.rh-nav-toggle{font-size:16px;padding:11px 0;}
  .rh-family-panel a{font-size:12px;}
}

/* ================================================================
   V7 — Header / menu refinement only
   The rest of the V5 website remains unchanged.
   Click-driven luxury mega drawer inspired by the approved direction.
   ================================================================ */
.rh-mega-drawer{
  width:min(390px,92vw)!important;
  transition:width .32s ease,right .32s ease;
  max-width:none!important;
  height:min(880px,92vh);
  top:4vh!important;
  right:3vw!important;
  bottom:auto!important;
  padding:0!important;
  background:linear-gradient(135deg,#171411 0%,#0f0d0b 72%,#17120e 100%)!important;
  border:1px solid rgba(214,181,125,.22);
  border-radius:2px;
  box-shadow:0 35px 110px rgba(0,0,0,.5);
  overflow:hidden!important;
}
/* Keep the closed mega drawer completely outside the viewport.
   The right inset used by the open design must not leave a visible sliver. */
.rh-mega-drawer:not(.is-open){
  transform:translateX(120vw)!important;
  visibility:hidden!important;
  opacity:0!important;
  pointer-events:none!important;
}
.rh-mega-drawer.is-open{
  transform:translateX(0)!important;
  visibility:visible!important;
  opacity:1!important;
  pointer-events:auto!important;
}
.rh-mega-head{height:118px;position:relative;display:flex;align-items:flex-end;justify-content:flex-start;padding:38px 30px 18px;border-bottom:1px solid rgba(214,181,125,.18);}
.rh-mega-brand{display:flex;align-items:center;gap:18px;min-width:0;}
.rh-mega-brand img{width:72px;height:58px;object-fit:contain;filter:drop-shadow(0 5px 12px rgba(0,0,0,.18));}
.rh-mega-brand div{display:flex;flex-direction:column;gap:2px;}
.rh-mega-brand span{font-family:Georgia,"Times New Roman",serif;font-size:14px;letter-spacing:.18em;color:#e4c28c;white-space:nowrap;}
.rh-mega-brand small{font-size:9px;letter-spacing:.36em;color:rgba(255,255,255,.54);}
.rh-mega-close{position:absolute;top:10px;left:14px;width:24px;height:24px;border:0;background:transparent!important;cursor:pointer;padding:0;z-index:5;}
.rh-mega-close span{position:absolute;left:5px;top:11px;width:14px;height:1px;background:#d9b779;transform:rotate(45deg);transition:background .2s ease;}
.rh-mega-close span:last-child{transform:rotate(-45deg);}
.rh-mega-close:hover span{background:#fff;}
.rh-mega-body{height:calc(100% - 118px);display:grid;grid-template-columns:minmax(0,1fr);min-height:0;}
.rh-mega-drawer.is-expanded{width:min(1180px,94vw)!important;}
.rh-mega-drawer.is-expanded .rh-mega-body{grid-template-columns:300px minmax(0,1fr);}
.rh-mega-drawer:not(.is-expanded) .rh-mega-primary{border-right:0;}
.rh-mega-primary{padding:36px 30px 26px;border-right:1px solid rgba(214,181,125,.17);display:flex;flex-direction:column;min-height:0;overflow:auto;}
.rh-mega-primary>a,.rh-mega-primary-btn{width:100%;display:flex;align-items:center;justify-content:space-between;gap:16px;padding:16px 4px;border:0;border-bottom:1px solid rgba(255,255,255,.11);background:transparent;color:#f1e9df!important;font-family:Georgia,"Times New Roman",serif;font-size:21px;font-weight:400;line-height:1.2;text-align:left;cursor:pointer;transition:color .2s ease,padding .2s ease,border-color .2s ease;}
.rh-mega-primary>a i,.rh-mega-primary-btn i{font-size:16px;color:#d9b779;transition:transform .2s ease;}
.rh-mega-primary>a:hover,.rh-mega-primary-btn:hover,.rh-mega-primary-btn.is-active{color:#d9b779!important;padding-left:9px;border-bottom-color:rgba(217,183,121,.4);}
.rh-mega-primary>a:hover i,.rh-mega-primary-btn:hover i{transform:translateX(3px);}
.rh-mega-contact{margin-top:auto;padding-top:28px;display:flex;flex-direction:column;gap:8px;}
.rh-mega-contact>span{font-size:9px;font-weight:700;letter-spacing:.22em;color:#d9b779;}
.rh-mega-contact a,.rh-mega-contact small{font-family:Georgia,"Times New Roman",serif;font-size:12.5px;color:rgba(255,255,255,.76);line-height:1.5;}
.rh-mega-contact i{width:18px;color:#d9b779;margin-right:5px;}
.rh-mega-panel{display:none;height:100%;overflow:auto;padding:35px 38px 34px;min-width:0;}
.rh-mega-panel.is-active{display:block;animation:rhPanelIn .26s ease both;}
@keyframes rhPanelIn{from{opacity:0;transform:translateX(12px)}to{opacity:1;transform:none}}
.rh-mega-panel-top{display:flex;align-items:flex-end;justify-content:space-between;gap:30px;margin-bottom:24px;}
.rh-mega-kicker{display:block;font-size:9px;letter-spacing:.24em;color:#d9b779;margin-bottom:9px;}
.rh-mega-panel h2{margin:0!important;color:#f1e9df!important;font-family:Georgia,"Times New Roman",serif!important;font-size:26px!important;font-weight:400!important;line-height:1.18!important;letter-spacing:0!important;}
.rh-mega-viewall,.rh-family-detail-head a{font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:#d9b779!important;white-space:nowrap;}
.rh-mega-family-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;}
.rh-mega-family-card{position:relative;display:grid;grid-template-columns:150px 1fr 20px;align-items:center;gap:18px;width:100%;min-height:150px;padding:0 19px 0 0;background:rgba(255,255,255,.025);border:1px solid rgba(255,255,255,.1);color:#fff;text-align:left;overflow:hidden;cursor:pointer;transition:border-color .25s ease,background .25s ease,transform .25s ease;}
.rh-mega-family-card:hover{border-color:rgba(217,183,121,.55);background:rgba(217,183,121,.05);transform:translateY(-2px);}
.rh-mega-family-img{height:150px;overflow:hidden;display:block;}
.rh-mega-family-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease;}
.rh-mega-family-card:hover img{transform:scale(1.035);}
.rh-mega-family-copy{display:flex;flex-direction:column;gap:7px;min-width:0;}
.rh-mega-family-copy strong{font-family:Georgia,"Times New Roman",serif;font-size:18px;font-weight:400;line-height:1.25;color:#f1e9df;letter-spacing:0;}
.rh-mega-family-copy small{font-size:10.5px;line-height:1.6;color:rgba(255,255,255,.56);font-weight:300;}
.rh-mega-family-card>i{font-size:18px;color:#d9b779;}
.rh-mega-back{border:0;background:transparent;color:#d9b779;padding:0;margin:0 0 18px;font-size:11px;text-transform:uppercase;letter-spacing:.13em;cursor:pointer;}
.rh-mega-back i{margin-right:7px;}
.rh-family-hero{position:relative;height:260px;overflow:hidden;border:1px solid rgba(217,183,121,.15);margin-bottom:22px;background:#18130f;}
.rh-family-hero>img{width:100%;height:100%;object-fit:cover;filter:brightness(.65) saturate(.85);}
.rh-family-hero:after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(12,10,8,.84) 0%,rgba(12,10,8,.36) 58%,rgba(12,10,8,.08) 100%);}
.rh-family-hero-overlay{position:absolute;z-index:1;left:28px;bottom:26px;width:min(390px,65%);}
.rh-family-hero-overlay span{font-size:9px;letter-spacing:.26em;color:#d9b779;}
.rh-family-hero-overlay h2{font-size:31px!important;font-weight:400!important;margin:5px 0 8px!important;line-height:1.15!important;}
.rh-family-hero-overlay p{margin:0;color:rgba(255,255,255,.7);font-size:12px;line-height:1.55;}
.rh-family-detail-head{display:flex;align-items:center;justify-content:space-between;gap:20px;margin:8px 0 13px;}
.rh-family-detail-head>span{font-size:10px;letter-spacing:.18em;text-transform:uppercase;color:rgba(255,255,255,.52);}
.rh-family-product-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;}
.rh-family-product-card{position:relative;display:grid;grid-template-columns:70px 1fr 14px;align-items:center;gap:12px;min-height:84px;padding:8px 12px 8px 8px;border:1px solid rgba(255,255,255,.1);background:rgba(255,255,255,.025);color:#f4ede4!important;transition:border-color .2s ease,background .2s ease;}
.rh-family-product-card:hover{border-color:rgba(217,183,121,.5);background:rgba(217,183,121,.055);}
.rh-family-product-img{width:70px;height:66px;overflow:hidden;background:#f3efe8;display:block;}
.rh-family-product-img img{width:100%;height:100%;object-fit:cover;}
.rh-family-product-title{font-family:Georgia,"Times New Roman",serif;font-size:12.5px;font-weight:400;line-height:1.35;}
.rh-family-product-card>i{color:#d9b779;font-size:13px;}

@media(max-width:1000px){
  .rh-mega-drawer{width:min(360px,94vw)!important;right:3vw!important;}
  .rh-mega-drawer.is-expanded{width:94vw!important;}
  .rh-mega-drawer.is-expanded .rh-mega-body{grid-template-columns:250px minmax(0,1fr);}
  .rh-mega-primary{padding:28px 22px 22px;}
  .rh-mega-primary>a,.rh-mega-primary-btn{font-size:18px;padding:14px 2px;}
  .rh-mega-panel{padding:28px 25px;}
  .rh-mega-family-card{grid-template-columns:110px 1fr 16px;min-height:120px;gap:12px;}
  .rh-mega-family-img{height:120px;}
  .rh-family-product-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}

@media(max-width:760px){
  .rh-mega-drawer{inset:0!important;width:100vw!important;height:100vh!important;max-height:none!important;border:0;border-radius:0;}
  .rh-mega-drawer:not(.is-open){transform:translateX(120vw)!important;visibility:hidden!important;opacity:0!important;}
  .rh-mega-drawer.is-open{transform:translateX(0)!important;visibility:visible!important;opacity:1!important;}
  .rh-mega-head{height:96px;padding:34px 18px 12px;}
  .rh-mega-brand img{width:56px;height:46px;}
  .rh-mega-brand span{font-size:10px;letter-spacing:.14em;}
  .rh-mega-brand small{font-size:7px;}
  .rh-mega-body{height:calc(100% - 96px);display:block;position:relative;overflow:hidden;}
  .rh-mega-primary{position:absolute;inset:0;padding:22px 20px;overflow:auto;border:0;transition:transform .3s ease;}
  .rh-mega-primary>a,.rh-mega-primary-btn{font-size:18px;padding:14px 2px;}
  .rh-mega-contact{margin-top:34px;}
  .rh-mega-panel{position:absolute;inset:0;padding:18px 18px 26px;background:#100e0c;overflow:auto;transform:translateX(100%);display:block;opacity:0;pointer-events:none;transition:transform .3s ease,opacity .3s ease;animation:none;}
  .rh-mega-panel.is-active{transform:translateX(0);opacity:1;pointer-events:auto;}
  .rh-mega-panel-top{align-items:flex-start;flex-direction:column;gap:8px;margin-bottom:17px;}
  .rh-mega-panel h2{font-size:25px!important;}
  .rh-mega-family-grid{grid-template-columns:1fr;gap:10px;}
  .rh-mega-family-card{grid-template-columns:104px 1fr 15px;min-height:105px;}
  .rh-mega-family-img{height:105px;}
  .rh-mega-family-copy strong{font-size:18px;}
  .rh-mega-family-copy small{font-size:10px;}
  .rh-family-hero{height:220px;}
  .rh-family-hero-overlay{left:20px;bottom:20px;width:78%;}
  .rh-family-hero-overlay h2{font-size:30px!important;}
  .rh-family-product-grid{grid-template-columns:1fr;}
  .rh-family-detail-head{align-items:flex-start;flex-direction:column;gap:5px;}
}

/* V14 — compact professional header search */
.rh-header-actions{position:relative;display:flex;align-items:center;gap:10px;overflow:visible;}
.rh-header-search{position:relative;display:flex;align-items:center;flex-direction:row-reverse;}
.rh-header-search-toggle{position:relative;z-index:3;flex:0 0 auto;}
.rh-header-search-box{width:0;opacity:0;visibility:hidden;overflow:visible;transition:width .24s ease,opacity .18s ease,visibility .18s ease;margin-right:0;position:relative;}
.rh-header-search.is-open .rh-header-search-box{width:280px;opacity:1;visibility:visible;margin-right:8px;}
#rhHeaderSearchInput{
  display:block!important;width:100%!important;height:38px!important;min-height:38px!important;
  padding:0 14px!important;margin:0!important;border:1px solid rgba(23,20,17,.18)!important;
  border-radius:999px!important;background:#fff!important;box-shadow:0 8px 25px rgba(23,20,17,.08)!important;
  color:#171411!important;-webkit-text-fill-color:#171411!important;caret-color:#6a2636!important;
  font-family:Arial,Helvetica,sans-serif!important;font-size:14px!important;line-height:38px!important;
  outline:0!important;opacity:1!important;pointer-events:auto!important;text-align:left!important;
}
#rhHeaderSearchInput::placeholder{color:#918982!important;-webkit-text-fill-color:#918982!important;opacity:1!important;}
#rhHeaderSearchInput:focus{border-color:rgba(106,38,54,.55)!important;box-shadow:0 8px 28px rgba(23,20,17,.10),0 0 0 3px rgba(106,38,54,.07)!important;}
.rh-header-search-results{
  display:none;position:absolute;top:46px;right:0;width:320px;max-height:360px;overflow:auto;
  background:#fff;border:1px solid rgba(23,20,17,.12);border-radius:14px;box-shadow:0 20px 55px rgba(23,20,17,.16);
  padding:6px;z-index:1400;
}
.rh-header-search-results.is-visible{display:block;}
.rh-header-search-result{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:11px 12px;border-radius:10px;color:#171411!important;text-decoration:none!important;transition:background .18s ease;}
.rh-header-search-result:hover,.rh-header-search-result:focus{background:#f5f1eb;}
.rh-header-search-result span{min-width:0;display:block;}
.rh-header-search-result small{display:block;font-family:Arial,Helvetica,sans-serif;font-size:9px;line-height:1.2;letter-spacing:.11em;text-transform:uppercase;color:#9a8d82;margin-bottom:3px;}
.rh-header-search-result strong{display:block;font-family:Georgia,"Times New Roman",serif;font-size:14px;line-height:1.25;font-weight:500;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.rh-header-search-result i{font-size:11px;color:#b99258;flex:0 0 auto;}
.rh-header-search-empty{padding:13px 12px;font-size:13px;color:#8d837b;}
@media(max-width:720px){
  .rh-header-search.is-open .rh-header-search-box{width:min(52vw,230px);}
  .rh-header-search-results{width:min(82vw,320px);right:-46px;}
  #rhHeaderSearchInput{font-size:13px!important;padding:0 12px!important;}
}


/* ================================================================
   V16 — Warm stone / bronze palette + cache refresh
   A visibly warmer editorial base designed around the current
   espresso, bronze, burgundy and ivory GOND photography.
   ================================================================ */
:root{
  --rh-ink:#2b211b;
  --rh-charcoal:#17120f;
  --rh-charcoal-2:#251b16;
  --rh-ivory:#e4d7c7;
  --rh-paper:#eee4d7;
  --rh-wine:#743447;
  --rh-wine-dark:#552633;
  --rh-gold:#b38a52;
  --rh-gold-soft:#d8ba82;
  --rh-line:rgba(67,49,36,.14);
  --rh-muted:#776a60;
  --rh-shadow:0 24px 70px rgba(49,34,24,.13);
}
html,body.rh-body,.rh-page{background:#eee4d7!important;color:var(--rh-ink)!important;}
.rh-header{background:rgba(238,228,215,.96)!important;border-bottom-color:rgba(72,51,37,.10)!important;}
.rh-header.is-scrolled{background:rgba(238,228,215,.99)!important;box-shadow:0 10px 34px rgba(47,33,24,.10)!important;}
.rh-section:not(.rh-section-dark):not(.rh-trade-band),.rh-page-hero{background:#eee4d7;}
.rh-section-ivory,.rh-related{background:#e4d7c7!important;}
.rh-hero-v3{background:linear-gradient(112deg,#eadfD1 0%,#eadfD1 55%,#17120f 55%,#17120f 100%)!important;}
.rh-category-card-v3,.rh-product-card,.rh-value-card,.rh-stat,.rh-message-panel{background:#f7f0e7!important;}
.rh-category-card-v3{border-color:rgba(72,50,34,.12)!important;box-shadow:0 18px 48px rgba(52,36,25,.09)!important;}
.rh-category-card-v3 .rh-category-content span,.rh-copy,.rh-lead{color:#6f6258!important;}
.rh-btn-primary{background:#743447!important;border-color:#743447!important;}
.rh-btn-primary:hover{background:#5b2938!important;border-color:#5b2938!important;}
.rh-btn-light{background:#f7f0e7!important;border-color:rgba(72,50,34,.14)!important;}
.rh-btn-light:hover{background:#e7dacb!important;}
.rh-trade-band{background:linear-gradient(125deg,#17120f 0%,#2b1e18 62%,#3a2520 100%)!important;}
.rh-footer{background:#15110e!important;}
#rhHeaderSearchInput,.rh-header-search-results{background:#f8f1e8!important;}
.rh-header-search-result:hover,.rh-header-search-result:focus{background:#eadfD1!important;}
@media(max-width:900px){.rh-hero-v3{background:#eadfD1!important;}}

/* =========================================================
   V17 hero palette refinement — harmonise with warm editorial photography
   Only affects the opening hero section.
   ========================================================= */
.rh-hero-v3{
  background:
    radial-gradient(circle at 22% 32%,rgba(255,248,238,.62) 0,rgba(255,248,238,0) 34%),
    radial-gradient(circle at 82% 38%,rgba(116,61,45,.22) 0,rgba(116,61,45,0) 34%),
    linear-gradient(112deg,#eadfd1 0%,#e4d7c8 54.5%,#4a342b 54.5%,#211713 100%) !important;
}
.rh-hero-v3:after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(90deg,rgba(185,146,88,.035),transparent 42%,rgba(15,10,8,.08) 100%);
  z-index:0;
}
.rh-hero-v3 .rh-container{position:relative;z-index:1;}
.rh-hero-v3 .rh-hero-copy p{color:#5a4f47;}
.rh-hero-v3 .rh-display-v3 em{color:#74404a;}
.rh-hero-v3 .rh-hero-meta{border-top-color:rgba(81,61,48,.18);}
.rh-hero-v3 .rh-hero-meta span{color:#76685e;}
.rh-hero-v3 .rh-btn-secondary{border-color:rgba(73,53,43,.28);}
.rh-hero-v3 .rh-hero-editorial{
  border-color:rgba(211,174,116,.28);
  box-shadow:0 36px 88px rgba(20,12,8,.34),0 0 0 1px rgba(255,255,255,.025) inset;
}

@media (max-width:900px){
  .rh-hero-v3{
    background:linear-gradient(180deg,#eadfd1 0%,#e4d7c8 52%,#38271f 52%,#211713 100%) !important;
  }
  .rh-hero-v3 .rh-hero-visual{background:transparent;}
}

/* =========================================================
   V18 — layered warm gradients across the site
   Extends the hero's dark-to-light editorial shading to the
   remaining page sections while preserving the current layout.
   ========================================================= */
html,body.rh-body,.rh-page{
  background:linear-gradient(118deg,#f0e7dc 0%,#ebe0d3 52%,#e3d3c2 100%)!important;
}
.rh-header{
  background:linear-gradient(90deg,rgba(243,235,225,.97) 0%,rgba(235,224,211,.97) 58%,rgba(227,211,195,.96) 100%)!important;
}
.rh-header.is-scrolled{
  background:linear-gradient(90deg,rgba(243,235,225,.99) 0%,rgba(235,224,211,.99) 58%,rgba(227,211,195,.99) 100%)!important;
}
.rh-section:not(.rh-section-dark):not(.rh-trade-band),.rh-page-hero{
  background:
    radial-gradient(circle at 12% 20%,rgba(255,250,243,.45) 0,rgba(255,250,243,0) 32%),
    linear-gradient(112deg,#f0e7dc 0%,#eadfd2 56%,#dfcfbd 100%)!important;
}
.rh-section-ivory,.rh-related{
  background:
    radial-gradient(circle at 86% 18%,rgba(185,146,88,.07) 0,rgba(185,146,88,0) 30%),
    linear-gradient(118deg,#e9ddcf 0%,#dfd0bf 54%,#cfbda9 100%)!important;
}
.rh-section-dark{
  background:
    radial-gradient(circle at 82% 26%,rgba(166,106,77,.18) 0,rgba(166,106,77,0) 34%),
    linear-gradient(108deg,#17120f 0%,#241914 42%,#3a2821 72%,#5a3d31 100%)!important;
}
.rh-section-dark .rh-lead,.rh-section-dark p{color:rgba(255,248,239,.72)!important;}
.rh-section-dark .rh-value-card{
  background:linear-gradient(145deg,#f9f2e9 0%,#f1e5d8 58%,#e6d4c1 100%)!important;
  border-color:rgba(217,183,121,.20)!important;
  box-shadow:0 18px 50px rgba(17,11,8,.18)!important;
}
.rh-trade-band{
  background:
    radial-gradient(circle at 88% 25%,rgba(190,128,91,.22) 0,rgba(190,128,91,0) 36%),
    linear-gradient(105deg,#1a1411 0%,#2b1e19 44%,#422d25 73%,#604136 100%)!important;
  box-shadow:0 20px 58px rgba(44,29,22,.16)!important;
}
.rh-contact-card{
  background:linear-gradient(120deg,#18120f 0%,#2c1e19 58%,#4b3329 100%)!important;
}
.rh-footer{
  background:
    radial-gradient(circle at 78% 10%,rgba(169,110,80,.14) 0,rgba(169,110,80,0) 34%),
    linear-gradient(108deg,#15110e 0%,#241914 45%,#39271f 73%,#4e342a 100%)!important;
}
.rh-mega-drawer{
  background:
    radial-gradient(circle at 84% 20%,rgba(180,119,84,.16) 0,rgba(180,119,84,0) 34%),
    linear-gradient(120deg,#15110e 0%,#241814 56%,#3b2821 100%)!important;
}
.rh-mega-panel{
  background:linear-gradient(120deg,#15110e 0%,#211713 60%,#35241e 100%)!important;
}
.rh-category-card-v3,.rh-product-card,.rh-value-card,.rh-stat,.rh-message-panel,.rh-inquiry-panel{
  background:linear-gradient(145deg,#faf4ec 0%,#f3e8dc 62%,#e8d8c6 100%)!important;
}
.rh-page-hero{
  background:linear-gradient(112deg,#f1e8de 0%,#e9ddcf 58%,#dac6b1 100%)!important;
}
@media(max-width:900px){
  html,body.rh-body,.rh-page{background:linear-gradient(180deg,#f0e7dc 0%,#e5d6c6 100%)!important;}
  .rh-section:not(.rh-section-dark):not(.rh-trade-band),.rh-page-hero{background:linear-gradient(180deg,#f0e7dc 0%,#e5d6c6 100%)!important;}
  .rh-section-ivory,.rh-related{background:linear-gradient(180deg,#e9ddcf 0%,#d9c8b6 100%)!important;}
  .rh-section-dark{background:linear-gradient(155deg,#17120f 0%,#2b1e19 58%,#493129 100%)!important;}
  .rh-trade-band{background:linear-gradient(145deg,#1a1411 0%,#31211b 58%,#55382f 100%)!important;}
  .rh-footer{background:linear-gradient(155deg,#15110e 0%,#281b16 58%,#463027 100%)!important;}
}

/* =========================================================
   V19 — homepage hero blended into one cinematic background
   Only the homepage opening/header treatment is changed.
   ========================================================= */
body.rh-home .rh-main{padding-top:0;}
body.rh-home .rh-header:not(.is-scrolled){
  background:linear-gradient(180deg,rgba(12,9,7,.72) 0%,rgba(12,9,7,.28) 72%,rgba(12,9,7,0) 100%)!important;
  border-bottom-color:rgba(223,187,125,.18)!important;
  box-shadow:none!important;
  backdrop-filter:none!important;
  -webkit-backdrop-filter:none!important;
}
body.rh-home .rh-header:not(.is-scrolled) .rh-icon-button,
body.rh-home .rh-header:not(.is-scrolled) .rh-menu-button{color:#f5eadb!important;}
body.rh-home .rh-header:not(.is-scrolled) .rh-icon-button:hover,
body.rh-home .rh-header:not(.is-scrolled) .rh-menu-button:hover{background:rgba(255,255,255,.08)!important;color:#d9b779!important;}
body.rh-home .rh-header:not(.is-scrolled) .rh-brand img{filter:drop-shadow(0 3px 14px rgba(0,0,0,.35));}

.rh-home-hero{
  min-height:clamp(680px,92vh,900px)!important;
  display:flex!important;
  align-items:center!important;
  background-image:
    linear-gradient(
        90deg,
        rgba(12,8,6,.78) 0%,
        rgba(12,8,6,.68) 22%,
        rgba(12,8,6,.48) 38%,
        rgba(12,8,6,.23) 52%,
        rgba(12,8,6,.06) 66%,
        rgba(12,8,6,0) 78%
    ),
    linear-gradient(
        180deg,
        rgba(5,3,2,.20) 0%,
        rgba(5,3,2,0) 35%,
        rgba(5,3,2,.08) 100%
    ),
    url('../images/collection/hero-gond-wide-v20.jpg?v=20') !important;

background-size:cover, cover, cover !important;
background-position:center center, center center, center center !important;
background-repeat:no-repeat, no-repeat, no-repeat !important;
background-color:#120c09 !important;
  isolation:isolate;
}
.rh-home-hero:before{
  content:""!important;
  position:absolute!important;
  inset:0!important;
  width:auto!important;height:auto!important;left:0!important;bottom:0!important;
  border:0!important;border-radius:0!important;box-shadow:none!important;
  background:radial-gradient(circle at 63% 43%,rgba(210,151,85,.10) 0%,rgba(210,151,85,0) 27%)!important;
  z-index:0!important;
  pointer-events:none;
}
.rh-home-hero:after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:100px;
  background:linear-gradient(180deg,transparent,rgba(15,10,8,.18));
  z-index:0;
  pointer-events:none;
}
.rh-home-hero-inner{
  position:relative;
  z-index:2;
  width:min(1280px,calc(100% - 80px));
  padding-top:calc(var(--rh-header-h) + 54px);
  padding-bottom:74px;
}
.rh-home-hero-copy{width:min(510px,46vw);color:#fff;}
.rh-home-hero-kicker{
  display:block;
  margin-bottom:22px;
  color:#d9b779;
  font-size:11px;
  font-weight:800;
  letter-spacing:.23em;
  line-height:1.4;
}
.rh-home-hero-title{
  margin:0!important;
  color:#fff!important;
  font-family:Georgia,"Times New Roman",serif!important;
  font-size:clamp(70px,8vw,112px)!important;
  font-weight:400!important;
  line-height:.88!important;
  letter-spacing:-.04em!important;
  text-shadow:0 5px 32px rgba(0,0,0,.32);
}
.rh-home-hero-subtitle{
  margin:23px 0 24px;
  color:#e3bd7d;
  font-size:clamp(17px,1.55vw,24px);
  line-height:1.2;
  font-weight:600;
  letter-spacing:.32em;
}
.rh-home-hero-copy p{
  max-width:455px!important;
  margin:0 0 30px!important;
  color:rgba(255,250,244,.82)!important;
  font-size:15px!important;
  line-height:1.78!important;
  text-shadow:0 2px 16px rgba(0,0,0,.3);
}
.rh-home-hero-actions{display:flex;gap:16px;flex-wrap:wrap;}
.rh-home-btn-primary{
  min-height:48px!important;
  padding:0 24px!important;
  background:#e1bb78!important;
  border-color:#e1bb78!important;
  color:#21160f!important;
  box-shadow:0 10px 30px rgba(0,0,0,.14);
}
.rh-home-btn-primary:hover{background:#edce93!important;border-color:#edce93!important;color:#21160f!important;}
.rh-home-btn-secondary{
  min-height:48px!important;
  padding:0 25px!important;
  background:rgba(15,10,8,.12)!important;
  border-color:rgba(225,187,120,.70)!important;
  color:#fff8ee!important;
  backdrop-filter:blur(4px);
}
.rh-home-btn-secondary:hover{background:rgba(225,187,120,.12)!important;color:#fff!important;border-color:#e1bb78!important;}
.rh-home-scroll{
  display:inline-flex;
  align-items:center;
  gap:11px;
  margin-top:38px;
  color:#d9b779!important;
  font-size:10px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.rh-home-scroll span{
  width:29px;height:29px;border:1px solid rgba(217,183,121,.68);border-radius:50%;
  display:grid;place-items:center;
}
.rh-home-scroll:hover{color:#f0d09a!important;}

@media(max-width:900px){
  body.rh-home .rh-main{padding-top:0;}
  .rh-home-hero{
    min-height:760px!important;
    background-position:61% center!important;
  }
  .rh-home-hero-inner{width:min(100% - 42px,720px);padding-top:calc(var(--rh-header-h) + 74px);padding-bottom:64px;}
  .rh-home-hero-copy{width:min(560px,88vw);}
  .rh-home-hero-title{font-size:clamp(62px,15vw,92px)!important;}
  .rh-home-hero-subtitle{font-size:15px;letter-spacing:.23em;}
  .rh-home-hero-copy p{font-size:14px!important;max-width:430px!important;}
}
@media(max-width:600px){
  .rh-home-hero{
    min-height:720px!important;
    background-position:64% center!important;
    background-image:
      linear-gradient(90deg,rgba(9,7,6,.94) 0%,rgba(11,8,6,.84) 52%,rgba(13,9,7,.38) 100%),
      linear-gradient(180deg,rgba(8,6,5,.12),rgba(8,6,5,.24)),
      url('../images/collection/hero-gond-blended-v19.jpg?v=19')!important;
  }
  .rh-home-hero-inner{width:calc(100% - 34px);padding-top:calc(var(--rh-header-h) + 52px);}
  .rh-home-hero-copy{width:100%;}
  .rh-home-hero-kicker{font-size:9px;letter-spacing:.17em;max-width:300px;}
  .rh-home-hero-title{font-size:58px!important;}
  .rh-home-hero-subtitle{font-size:13px;letter-spacing:.18em;margin-top:17px;}
  .rh-home-hero-copy p{max-width:330px!important;font-size:13px!important;line-height:1.65!important;}
  .rh-home-hero-actions{gap:10px;}
  .rh-home-btn-primary,.rh-home-btn-secondary{min-height:44px!important;padding:0 17px!important;font-size:10px!important;}
}
/* Company name beside header logo */
.rh-brand{
    display:flex;
    align-items:center;
    gap:16px;
}

.rh-header-company{
    display:flex;
    flex-direction:column;
    justify-content:center;
    line-height:1;
}

.rh-header-company span{
    font-family:Georgia,"Times New Roman",serif;
    font-size:15px;
    font-weight:500;
    letter-spacing:.18em;
    color:#ead0a0;
    white-space:nowrap;
}

.rh-header-company small{
    margin-top:7px;
    font-size:9px;
    font-weight:600;
    letter-spacing:.40em;
    color:rgba(255,255,255,.72);
}
@media(max-width:700px){
    .rh-brand{
        gap:10px;
    }

    .rh-header-company span{
        font-size:10px;
        letter-spacing:.12em;
    }

    .rh-header-company small{
        font-size:7px;
        margin-top:5px;
        letter-spacing:.25em;
    }
}


/* ===== ROYAL HOUSE HEADER BRAND FIX ===== */

.rh-header .rh-brand{
    display:flex !important;
    align-items:center !important;
    width:auto !important;
    max-width:none !important;
    height:64px !important;
    overflow:visible !important;
    gap:15px !important;
    flex:0 0 auto !important;
    text-decoration:none !important;
}

.rh-header .rh-brand img{
    width:96px !important;
    height:58px !important;
    object-fit:contain !important;
    flex:0 0 auto !important;
}

.rh-header-company{
    display:flex !important;
    flex-direction:column !important;
    justify-content:center !important;
    opacity:1 !important;
    visibility:visible !important;
    width:auto !important;
    overflow:visible !important;
    line-height:1 !important;
}

.rh-header-company span{
    display:block !important;
    font-family:Georgia,"Times New Roman",serif !important;
    font-size:14px !important;
    font-weight:500 !important;
    letter-spacing:.17em !important;
    color:#ead0a0 !important;
    white-space:nowrap !important;
}

.rh-header-company small{
    display:block !important;
    margin-top:7px !important;
    font-size:8px !important;
    font-weight:600 !important;
    letter-spacing:.38em !important;
    color:#e8dcc9 !important;
    white-space:nowrap !important;
}

@media(max-width:900px){
    .rh-header .rh-brand{
        height:56px !important;
        gap:9px !important;
    }

    .rh-header .rh-brand img{
        width:84px !important;
        height:52px !important;
    }

    .rh-header-company span{
        font-size:10px !important;
        letter-spacing:.11em !important;
    }

    .rh-header-company small{
        font-size:7px !important;
        margin-top:5px !important;
        letter-spacing:.25em !important;
    }
}

/* ===== MOBILE HERO FULL BACKGROUND V3 ===== */
@media(max-width:700px){

    .rh-home-hero{
        background-image:

            linear-gradient(
                90deg,
                rgba(10,7,5,.82) 0%,
                rgba(10,7,5,.72) 28%,
                rgba(10,7,5,.56) 48%,
                rgba(10,7,5,.34) 68%,
                rgba(10,7,5,.18) 100%
            ),

            linear-gradient(
                180deg,
                rgba(8,5,3,.12) 0%,
                rgba(8,5,3,.05) 45%,
                rgba(8,5,3,.30) 100%
            ),

            url('../images/collection/hero-gond-wide-v20.jpg?v=22') !important;

        background-size:
            100% 100%,
            100% 100%,
            cover !important;

        background-position:
            center center,
            center center,
            72% center !important;

        background-repeat:
            no-repeat,
            no-repeat,
            no-repeat !important;

        background-color:#0c0806 !important;
    }

}

/* ===== HERO FULL FIRST SCREEN + SMOOTH TRANSITION ===== */

.rh-home-hero{
    min-height:100vh !important;
    margin-bottom:0 !important;
}


@media(max-width:700px){

    .rh-home-hero{
        min-height:100vh !important;
    }
}

/* ===== VERY SUBTLE HERO EDGE BLEND ===== */

.rh-hero-transition{
    position:relative;
    z-index:3;
    height:34px;
    margin-top:-34px;
    margin-bottom:0;
    pointer-events:none;

    background:linear-gradient(
        to bottom,
        rgba(245,239,229,0) 0%,
        rgba(245,239,229,.08) 45%,
        rgba(245,239,229,.35) 75%,
        #f5efe5 100%
    );
}

@media(max-width:700px){
    .rh-hero-transition{
        height:26px;
        margin-top:-26px;
    }
}

/* ===== SUBTLE PRODUCTS MENU HOVER ===== */

.rh-mega-primary-btn:hover,
.rh-mega-primary-btn:focus,
.rh-mega-primary-btn[aria-expanded="true"]{
    background:rgba(214,181,125,.12) !important;
    color:#f5eadb !important;
    border-color:rgba(214,181,125,.28) !important;
}

/* ===== VERY SMALL CREAM TO BROWN BLEND ===== */

.rh-cream-brown-transition{
    position:relative;
    z-index:2;
    height:28px;
    margin-bottom:-28px;
    pointer-events:none;

    background:linear-gradient(
        to bottom,
        #f5efe5 0%,
        rgba(245,239,229,.82) 28%,
        rgba(245,239,229,.42) 60%,
        rgba(245,239,229,0) 100%
    );
}

@media(max-width:700px){
    .rh-cream-brown-transition{
        height:22px;
        margin-bottom:-22px;
    }
}
/* ===== GOND FAMILY SECTION – WARM LAYERED BACKGROUND ===== */

.rh-family-atmosphere{
    position:relative;
    overflow:hidden;

    background:
        radial-gradient(
            circle at 8% 18%,
            rgba(92,62,49,.16) 0%,
            rgba(92,62,49,.08) 20%,
            rgba(92,62,49,0) 42%
        ),

        radial-gradient(
            circle at 92% 82%,
            rgba(112,76,59,.13) 0%,
            rgba(112,76,59,.05) 24%,
            rgba(112,76,59,0) 44%
        ),

        linear-gradient(
            120deg,
            #ddd0c4 0%,
            #eee5dc 28%,
            #f6f1eb 53%,
            #eadfd5 76%,
            #d7c5b7 100%
        ) !important;
}
.rh-family-atmosphere .rh-category-card-v3{
    background:rgba(250,247,242,.92) !important;
    border:1px solid rgba(92,62,49,.10) !important;

    box-shadow:
        0 14px 38px rgba(58,39,31,.08),
        0 2px 8px rgba(58,39,31,.04);
}

/* =========================================================
   HOMEPAGE MIDDLE FLOW V2 — collection atmosphere + dark bridge
   Final override. Kept at the very end intentionally.
   ========================================================= */
.rh-collections-v3.rh-family-atmosphere{
  position:relative !important;
  overflow:hidden !important;
  background:
    radial-gradient(circle at 12% 12%,rgba(255,250,244,.68) 0%,rgba(255,250,244,0) 31%),
    radial-gradient(circle at 88% 82%,rgba(90,58,45,.18) 0%,rgba(90,58,45,0) 36%),
    linear-gradient(145deg,#f0e6db 0%,#e1d0c0 32%,#c7ad98 62%,#a37f69 82%,#795647 100%) !important;
}
.rh-collections-v3.rh-family-atmosphere::before{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:linear-gradient(180deg,rgba(255,252,248,.42) 0%,rgba(255,252,248,0) 22%,rgba(50,31,24,.04) 72%,rgba(50,31,24,.12) 100%);
}
.rh-collections-v3.rh-family-atmosphere > .rh-container{position:relative;z-index:1;}
.rh-collections-v3.rh-family-atmosphere .rh-section-title{color:#382a22 !important;}
.rh-collections-v3.rh-family-atmosphere .rh-lead{color:#68584d !important;}
.rh-collections-v3.rh-family-atmosphere .rh-eyebrow{color:#9c7248 !important;}
.rh-collections-v3.rh-family-atmosphere .rh-category-card-v3{
  background:linear-gradient(145deg,rgba(255,252,247,.97),rgba(240,229,217,.95)) !important;
  border:1px solid rgba(77,52,40,.15) !important;
  box-shadow:0 18px 46px rgba(57,38,29,.14) !important;
}
.rh-home-why{
  position:relative !important;
  overflow:hidden !important;
  background:
    radial-gradient(circle at 86% 18%,rgba(184,126,91,.18) 0%,rgba(184,126,91,0) 34%),
    linear-gradient(118deg,#211612 0%,#312019 54%,#54382d 100%) !important;
  color:#fff !important;
}
.rh-home-why .rh-lead,.rh-home-why .rh-copy{color:rgba(255,247,238,.76) !important;}
.rh-home-why .rh-eyebrow{color:#d8b779 !important;}
@media(max-width:900px){
  .rh-collections-v3.rh-family-atmosphere{
    background:linear-gradient(180deg,#f0e7dc 0%,#dfcdbc 38%,#c3a58f 68%,#98725f 86%,#765447 100%) !important;
  }
  .rh-home-why{background:linear-gradient(155deg,#211612 0%,#35231b 58%,#54382d 100%) !important;}
}
/* ==========================================================
   PRODUCT DETAIL PAGES ONLY
   Keeps supplied product artwork at its real proportions
   ========================================================== */

.rh-product-detail-grid{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(0,1fr);
    gap:64px;
    align-items:center;
}

.rh-product-detail-media{
    width:100%;
    min-height:520px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    border-radius:28px;
    padding:28px;
}

.rh-product-detail-media img{
    display:block;
    width:100%;
    height:100%;
    max-width:100%;
    max-height:520px;
    object-fit:contain !important;
    object-position:center center;
}

/* Laptop / tablet */
@media (max-width:900px){
    .rh-product-detail-grid{
        grid-template-columns:1fr;
        gap:38px;
    }

    .rh-product-detail-media{
        min-height:420px;
        padding:22px;
    }

    .rh-product-detail-media img{
        max-height:420px;
    }
}

/* Mobile */
@media (max-width:640px){
    .rh-product-detail-media{
        min-height:340px;
        padding:18px;
        border-radius:22px;
    }

    .rh-product-detail-media img{
        width:100%;
        height:auto;
        max-height:360px;
        object-fit:contain !important;
    }
}
/* =========================================================
   PRODUCT IMAGE FIT FIX
   Family pages + individual product pages only
   ========================================================= */

/* KING SIZE / NANO / SUPER SLIM family product cards */
.rh-product-media{
    aspect-ratio: 3 / 2 !important;
    background:#f5f3ef !important;
    overflow:hidden !important;
}

.rh-product-media img{
    width:100% !important;
    height:100% !important;
    max-width:none !important;
    max-height:none !important;
    object-fit:cover !important;
    object-position:center center !important;
    display:block !important;
}


/* INDIVIDUAL PRODUCT PAGE LARGE IMAGE */
.rh-product-detail-media{
    width:100% !important;
    min-height:0 !important;
    height:auto !important;
    aspect-ratio:3 / 2 !important;
    padding:0 !important;
    overflow:hidden !important;
    display:block !important;
}

.rh-product-detail-media img{
    width:100% !important;
    height:100% !important;
    max-width:none !important;
    max-height:none !important;
    object-fit:cover !important;
    object-position:center center !important;
    display:block !important;
}


/* TABLET + MOBILE */
@media(max-width:900px){

    .rh-product-detail-media{
        min-height:0 !important;
        aspect-ratio:3 / 2 !important;
    }

}

@media(max-width:640px){

    .rh-product-media,
    .rh-product-detail-media{
        aspect-ratio:3 / 2 !important;
    }

}
/* ===== GOND HERO REAL WORDMARK ===== */

.rh-gond-wordmark{
    display:flex !important;
    align-items:flex-start !important;
    gap:8px !important;
    margin:0 !important;
    line-height:1 !important;
}

.rh-gond-wordmark img{
    display:block !important;
    width:390px !important;
    max-width:78vw !important;
    height:auto !important;
    object-fit:contain !important;

    /* subtle integration with hero */
    filter:drop-shadow(0 5px 18px rgba(0,0,0,.30));
}

.rh-gond-wordmark sup{
    color:#fff !important;
    font-family:Arial,Helvetica,sans-serif !important;
    font-size:25px !important;
    font-weight:400 !important;
    line-height:1 !important;
    margin-top:3px !important;
}


/* Tablet */
@media(max-width:900px){

    .rh-gond-wordmark img{
        width:330px !important;
    }

    .rh-gond-wordmark sup{
        font-size:21px !important;
    }
}


/* Mobile */
@media(max-width:600px){

    .rh-gond-wordmark img{
        width:245px !important;
        max-width:78vw !important;
    }

    .rh-gond-wordmark sup{
        font-size:17px !important;
    }
}
/* ===== HERO GOND WORDMARK - FINAL SIZE & EFFECT ===== */

.rh-home-hero-title.rh-gond-wordmark {
    display: flex !important;
    align-items: flex-start !important;
    width: fit-content !important;
    margin: 14px 0 22px !important;
    line-height: 1 !important;
}

.rh-home-hero-title.rh-gond-wordmark img {
    display: block !important;
    width: clamp(280px, 31vw, 455px) !important;
    height: auto !important;
    max-width: 100% !important;

    filter:
        drop-shadow(0 3px 3px rgba(0,0,0,.45))
        drop-shadow(0 8px 16px rgba(0,0,0,.30))
        drop-shadow(0 0 8px rgba(189,145,78,.16)) !important;
}

.rh-home-hero-title.rh-gond-wordmark sup {
    font-family: Georgia, serif !important;
    font-size: 30px !important;
    font-weight: 400 !important;
    color: #f5efe5 !important;
    margin-left: 8px !important;
    margin-top: 3px !important;
    line-height: 1 !important;

    text-shadow:
        0 2px 5px rgba(0,0,0,.50),
        0 0 8px rgba(190,145,80,.16) !important;
}

/* Mobile */
@media (max-width:700px) {
    .rh-home-hero-title.rh-gond-wordmark img {
        width: clamp(235px, 68vw, 330px) !important;
    }

    .rh-home-hero-title.rh-gond-wordmark sup {
        font-size: 22px !important;
        margin-left: 5px !important;
    }
}
