/* SHADE — homepage skeleton
   Desktop 1920px pixel grid to match Figma export values.
*/

:root{
  --bg:#F0EFEA;
  --black:#000000;
  --dark:#211A16;
  --ink:#3E3937;
  --gold:#C9A86A;
  --accent:#A68676;
  --muted:#A6A09E;
  --muted2:#CECBCA;

  --ff-h:"Playfair Display", serif;
  --ff-b:"Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:var(--ff-b);
}

a{color:inherit;text-decoration:none}
button,input{font:inherit}
img{display:block;max-width:100%}

.page{
  position:relative;
  width:1920px;
  height:10506px;
  margin:0 auto;
  background:var(--bg);
  overflow:hidden;
}

/* Typography mapped from Figma export */
.h2{
  margin:0;
  font-family:var(--ff-h);
  font-weight:400;
  font-size:55px;
  line-height:73px;
  text-transform:uppercase;
  letter-spacing:0;
  color:var(--ink);
}
.h2--white{color:#fff}

.h3{
  margin:0;
  font-family:var(--ff-h);
  font-weight:400;
  font-size:28px;
  line-height:37px;
  letter-spacing:2px;
  color:var(--accent);
}

.h3--gold{color:var(--gold)}

.h4{
  margin:0;
  font-family:var(--ff-h);
  font-weight:400;
  font-size:18px;
  line-height:24px;
  letter-spacing:4px;
  text-transform:uppercase;
  color:var(--accent);
}

.h5{
  margin:0;
  font-family:var(--ff-h);
  font-weight:400;
  font-size:14px;
  line-height:19px;
  letter-spacing:4px;
  text-transform:uppercase;
  color:var(--muted);
}
.h5--gold{color:var(--accent)}

.p-body{
  margin:0;
  font-family:var(--ff-b);
  font-weight:400;
  font-size:14px;
  line-height:25px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--accent);
}
.p-body--gold{color:var(--accent)}
.p-body--center{text-align:center}

/* Shared UI */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:53px;
  padding:0 60px;
  border:0;
  background:transparent;
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:12px;
  line-height:15px;
}
.btn--outline{
  border:2px solid #fff;
  color:#fff;
}

.link-underline{
  display:inline-flex;
  align-items:center;
  height:62px;
  border-bottom:2px solid var(--muted);
  font-family:var(--ff-h);
  font-weight:400;
  font-size:18px;
  line-height:24px;
  letter-spacing:4px;
  text-transform:uppercase;
  color:var(--accent);
}
.link-underline--wide{width:463px; justify-content:flex-start}
.link-underline--request{
  position:absolute;
  left:36px;
  bottom:48px;
  width:188px;
  border-bottom:2px solid var(--muted);
}

/* Placeholders for dark imagery */
.ph{
  display:flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,.7);
  font-family:var(--ff-b);
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
}
.ph--dark{background:#0a0a0a}
.ph--mid{background:#1a1a1a}
.ph--light{background:#2a2a2a}
.ph > span{opacity:.75}

/* 1) HERO (VID) */
.hero{
  position:absolute;
  left:0; top:0;
  width:1920px; height:1063px;
  background:#0b0b0b;
}
.hero::before{
  content:"placeholder";
  position:absolute; inset:0;
  display:flex;align-items:center;justify-content:center;
  font-family:var(--ff-b);
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:rgba(255,255,255,.55);
}
.hero__overlay{position:absolute;left:0;width:1920px;height:288px;pointer-events:none}
.hero__overlay--top{top:0;background:linear-gradient(180deg,#000 0%,rgba(0,0,0,0) 100%)}
.hero__overlay--bottom{bottom:0;background:linear-gradient(180deg,#000 0%,rgba(0,0,0,0) 100%);transform:scaleY(-1)}

.header{
  position:absolute;
  left:0; top:0;
  width:1920px; height:194px;
  display:flex;
  flex-direction:column;
  align-items:center;
  padding:33px 0;
  gap:21px;
  z-index:5;
}
.logo img{height:74px;width:auto}

.header__nav{
  display:flex;
  align-items:center;
  gap:36px;
  height:33px;
}
.nav__link{
  font-family:var(--ff-b);
  font-weight:400;
  font-size:12px;
  line-height:15px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--muted);
}

.lang{
  position:absolute;
  right:40px;
  top:29px;
  width:68px;
  height:27px;
  border:1px solid var(--bg);
  display:flex;
}
.lang__btn{
  width:34px;height:27px;
  border:0;
  letter-spacing:2px;
  font-size:12px;
  line-height:15px;
  text-transform:uppercase;
}
.lang__btn--ghost{background:transparent;color:#fff}
.lang__btn--solid{background:var(--bg);color:#000}

.hero__content{
  position:absolute;
  width:863px; height:261px;
  left:calc(50% - 863px/2 + 0.5px);
  top:410px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:24px;
  z-index:3;
}
.hero__title{
  margin:0;
  width:863px;
  font-family:var(--ff-h);
  font-weight:400;
  font-size:69px;
  line-height:92px;
  text-align:center;
  color:#fff;
}

.scroll-indicator{
  position:absolute;
  width:53px; height:89px;
  left:calc(50% - 53px/2 + 0.5px);
  top:897px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
  z-index:3;
  color:#fff;
}
.scroll-indicator__label{
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
}
.scroll-indicator__track{
  position:relative;
  width:2px;height:60px;
  background:var(--gold);
}
.scroll-indicator__gold{display:none}
.scroll-indicator__white{
  position:absolute;
  left:0;
  top:11px;
  width:2px;height:30px;
  background:#fff;
}

/* 2) THIS IS SHADE split */
.split--this-is-shade{
  position:absolute;
  left:0;
  top:1063px;
  width:1920px;
  height:2817px;
  display:flex;
}
.split__left{
  position:relative;
  width:960px;height:2817px;
  background:var(--bg);
}
.split__right{
  position:relative;
  width:960px;height:2817px;
  background:transparent;
}
.split__copy{
  position:absolute;
  left:0; top:0;
  width:960px;height:939px;
  padding:208px 195px;
  display:flex;
  flex-direction:column;
  gap:36px;
}
.cta-box{
  position:absolute;
  width:918px;height:259px;
  left:calc(50% - 918px/2 + 174px);
  top:598px;
  border:2px solid var(--accent);
  padding:20px;
}
.cta-box__inner{
  width:878px;height:219px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:20px 40px;
  gap:262px;
}
.cta-box__inner .h3{width:297px}
.collage{
  position:absolute;
  left:0; top:0;
  width:960px;height:2817px;
}
.collage__tile{
  position:absolute;
  left:0;
  width:960px;height:939px;
  background:#111;
  display:flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,.55);
  font-size:12px;letter-spacing:2px;text-transform:uppercase;
}
.collage__tile--a{top:0}
.collage__tile--b{top:939px}
.collage__tile--c{top:1878px}
.collage__inset{
  position:absolute;
  width:312px;height:305.17px;
  left:calc(50% - 312px/2);
  top:calc(50% - 305.17px/2 + 0.09px);
  background:#000;
  display:flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,.55);
  font-size:12px;letter-spacing:2px;text-transform:uppercase;
}

/* 3) EXPERIENCE section */
.experience{
  position:absolute;
  left:0;
  top:3879px;
  width:1920px;
  height:1535px;
  background:var(--bg);
}
.experience__head{
  width:1920px;
  height:524px;
  display:flex;
  flex-direction:row;
  align-items:center;
  padding:170px 195px;
  gap:119px;
}
.experience__titleWrap{width:1218px}
.experience__subrow{
  width:1218px;
  height:75px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:36px;
}
.experience__subrow .p-body{width:376px}
.experience__subrow .p-body:last-of-type{width:484px}
.experience__canvas{
  position:relative;
  width:1920px;
  height:1011px;
}
.canvas__bg{
  position:absolute;inset:0;
  background:#0a0a0a;
  display:flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,.55);
  font-size:12px;letter-spacing:2px;text-transform:uppercase;
}
.hotspot{
  position:absolute;
  width:77px;height:77px;
  padding:0;
  border:1.65591px dashed var(--muted2);
  border-radius:81.9677px;
  background:rgba(255,255,255,0.06);
  backdrop-filter:blur(0.827957px);
}
.hotspot::after{
  content:"";
  position:absolute;left:calc(50% - 12.42px/2);top:calc(50% - 12.42px/2);
  width:12.42px;height:12.42px;border-radius:827px;
  background:var(--muted);
}
.hotspot--1{left:494px;top:367px}
.hotspot--1::after{background:var(--gold)}
.hotspot--2{left:1250px;top:304px}
.hotspot--3{left:1510px;top:429px}
.hotspot--4{left:755px;top:115px}
.hotspot--5{left:229px;top:266px}
.hotspot-line{
  position:absolute;
  width:202.23px;height:0;
  left:539px;top:412px;
  border:1px solid var(--gold);
  transform:rotate(45deg);
}
.hotspot-card{
  position:absolute;
  width:359px;height:407px;
  left:686px;top:561px;
  background:#fff;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  padding:18px;
  gap:9px;
}
.hotspot-card__close{
  width:24px;height:24px;
  border:0;background:transparent;
  color:var(--accent);
  cursor:pointer;
}
.hotspot-card .h3,
.hotspot-card .p-body{
  width:323px;
  align-self:stretch;
}
.hotspot-card__media{
  width:323px;height:183px;
  background:#111;
  display:flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,.55);
  font-size:12px;letter-spacing:2px;text-transform:uppercase;
}

/* 4) CRAFTED IN SILENCE */
.crafted{
  position:absolute;
  left:0;
  top:5588px;
  width:1920px;height:861px;
  overflow:hidden;
}
.crafted__bg{
  position:absolute;left:0;top:73px;
  width:1920px;height:715px;
  background:#030303;
}
.crafted__overlayBottom{
  position:absolute;left:0;bottom:0;
  width:1920px;height:288px;
  background:linear-gradient(180deg,#000 0%,rgba(0,0,0,0) 100%);
  transform:scaleY(-1);
}
.crafted__left{
  position:absolute;
  width:597px;height:535px;
  left:calc(50% - 597px/2 - 466.5px);
  top:calc(50% - 535px/2 + 37px);
  z-index:2;
}
.crafted__copy{display:flex;flex-direction:column;gap:36px}
.crafted__row{
  display:flex;
  align-items:center;
  gap:36px;
}
.crafted__dots{
  display:flex;
  gap:5px;
  width:247px;height:62px;
  align-items:center;
}
.dot{
  width:58px;height:62px;
  border:0;
  background:transparent;
  border-bottom:2px solid rgba(166,160,158,0.2);
  cursor:pointer;
}
.dot--active{border-bottom:2px solid var(--gold)}
.crafted__right{
  position:absolute;
  left:970px;top:0;
  width:2760px;height:861px;
}
.gallery-strip{
  position:absolute;left:0;top:0;
  display:flex;
  gap:20px;
  height:861px;
}
.gallery-strip__item{
  width:675px;
  background:#111;
  display:flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,.55);
  font-size:12px;letter-spacing:2px;text-transform:uppercase;
}
.gallery-strip__item--tall{height:861px}
.gallery-strip__item--half{height:431px; align-self:center}

/* 5) PRODUCTS */
.products{
  position:absolute;
  left:0;
  top:6477px;
  width:1920px;height:1361px;
  display:flex;
  justify-content:center;
  align-items:center;
}
.ornament{
  position:absolute;
  left:calc(50% - 11px/2);
  top:0;
  width:11px;height:238px;
}
.ornament::before{
  content:"";
  position:absolute;
  width:228px;height:0;
  left:5px;top:0;
  border:1px solid var(--accent);
  transform:rotate(90deg);
}
.ornament::after{
  content:"";
  position:absolute;
  width:11px;height:11px;
  left:0;top:227px;
  border:1px solid var(--accent);
  border-radius:99px;
  background:transparent;
}
.products__wrap{
  width:1534px;height:1095px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:58px;
}
.products__head{
  width:802px;height:377px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:58px;
}
.products__head .h2{
  width:802px;height:146px;
  text-align:center;
}
.products__head .p-body{
  width:574px;height:75px;
}
.tabs{
  width:600px;height:62px;
  display:flex;
  gap:18px;
  align-items:center;
}
.tab{
  width:188px;height:62px;
  border:0;
  background:transparent;
  border-bottom:2px solid rgba(166,160,158,0.4);
  font-family:var(--ff-h);
  font-weight:400;
  font-size:18px;
  line-height:24px;
  letter-spacing:4px;
  text-transform:uppercase;
  color:var(--muted);
  cursor:pointer;
}
.tab--active{border-bottom:2px solid var(--muted); color:var(--accent)}

.product-grid{
  width:1534px;height:660px;
  display:flex;
  gap:20px;
}
.product-card{
  position:relative;
  width:498px;height:660px;
  background:#fff;
}
.product-card__media{
  position:absolute;
  width:451px;height:374px;
  left:22px;top:19px;
  background:#111;
  display:flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,.55);
  font-size:12px;letter-spacing:2px;text-transform:uppercase;
}
.product-card__badge{
  position:absolute;
  width:186px;height:134px;
  left:252px;top:13px;
  background:#0a0a0a;
  display:flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,.55);
  font-size:12px;letter-spacing:2px;text-transform:uppercase;
}
.product-card__meta{
  position:absolute;
  width:427px;height:72px;
  left:calc(50% - 427px/2 + 0.5px);
  top:442px;
  display:flex;
  gap:30px;
  align-items:flex-start;
}
.price{
  width:169px;height:56px;
  display:flex;
  flex-direction:column;
  gap:6px;
  align-items:flex-end;
}
.price__now{
  font-family:var(--ff-b);
  font-weight:600;
  font-size:23px;
  line-height:25px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--accent);
}
.price__was{
  font-family:var(--ff-b);
  font-weight:600;
  font-size:16px;
  line-height:25px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#846C60;
}

/* 6) INTERIOR OPTIONS */
.interior{
  position:absolute;
  left:0;
  top:7899px;
  width:1920px;height:849px;
  background:#fff;
}
.interior__wrap{
  position:relative;
  width:1530px;height:849px;
  left:calc(50% - 1530px/2);
  top:0;
  background:#fff;
  overflow:hidden;
}
.interior__bg{
  position:absolute;
  width:1637px;height:1091px;
  left:calc(50% - 1637px/2 + 57.5px);
  top:-146px;
  background:#0a0a0a;
  display:flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,.55);
  font-size:12px;letter-spacing:2px;text-transform:uppercase;
}
.interior__overlayLeft{
  position:absolute;
  width:583px;height:974px;
  left:0;top:1px;
  background:linear-gradient(90deg,#000 0%,rgba(0,0,0,0) 100%);
}
.interior__overlayBottom{
  position:absolute;
  width:141px;height:1530px;
  left:calc(50% - 141px/2 - 694.5px);
  bottom:-1389px;
  background:linear-gradient(90deg,#000 0%,rgba(0,0,0,0) 100%);
  transform:rotate(-90deg);
}
.interior__content{
  position:absolute;
  width:902px;height:481px;
  left:46px;top:322px;
}
.interior__left{
  position:absolute;
  width:553px;height:481px;
  left:0;top:0;
  display:flex;
  flex-direction:column;
  gap:58px;
}
.interior__panel{
  width:336px;height:277px;
  background:linear-gradient(180deg,rgba(240,239,234,0.2) 0%,rgba(138,137,135,0.2) 100%);
  position:relative;
}
.interior__panel .h3{position:absolute;left:30px;top:23px}
.swatches{
  position:absolute;
  width:271px;height:133px;
  left:23px;top:121px;
  display:flex;
  flex-wrap:wrap;
  gap:19px 14px;
}
.swatch{
  width:57px;height:57px;
  border:0;
  border-radius:171.515px;
  background:#999;
  cursor:pointer;
  position:relative;
}
.swatch::after{
  content:"";
  position:absolute;
  left:calc(50% - 44px/2);
  top:calc(50% - 44px/2);
  width:44px;height:44px;
  border-radius:1716.7px;
  background:#3C3737;
}
.swatch--1::after{background:#CA8A65}
.swatch--2::after{background:#975356}
.swatch--3::after{background:#E8D2C4}
.swatch--4::after{background:#E5DCAA}
.swatch--5::after{background:#F3DBDC}
.swatch--6::after{background:#3C3737}
.swatch--7::after{background:#C9A86A}
.swatch--outline{border:1px solid var(--accent)}
.interior__nav{
  position:absolute;
  width:365px;height:96px;
  left:calc(50% - 365px/2 + 268.5px);
  top:385px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:0;
}
.interior__nav .interior__count{
  font-family:var(--ff-h);
  font-weight:400;
  font-size:18px;
  line-height:24px;
  letter-spacing:4px;
  text-transform:uppercase;
  color:rgba(255,255,255,0.9);
  margin-top:15px;
}
.circle-btn{
  width:54px;height:54px;
  border:1px solid rgba(255,255,255,0.9);
  border-radius:999px;
  background:transparent;
}
.circle-btn--prev{position:absolute;left:0;top:0}
.circle-btn--next{position:absolute;right:0;top:0}
.interior__fade{
  position:absolute;
  bottom:0;left:0;
  width:365px;height:42px;
  background:linear-gradient(180deg,rgba(255,255,255,0) 64.29%,rgba(255,255,255,0.7) 100%);
  filter:drop-shadow(0px 4px 11px rgba(0,0,0,0.25));
}

/* 7) QUOTE */
.quote{
  position:absolute;
  left:0;
  top:8748px;
  width:1920px;height:532px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--bg);
}
.quote__wrap{
  width:1172px;height:262px;
  position:relative;
}
.quote__mark{
  position:absolute;
  width:165px;height:134px;
  left:0;top:0;
  color:#fff;
  font-family:var(--ff-h);
  font-size:120px;
  line-height:134px;
}
.quote .h2{
  position:absolute;
  width:1166px;height:219px;
  left:calc(50% - 1166px/2 + 13px);
  top:43px;
  text-align:center;
}
.quote__author{
  position:absolute;
  left:0;top:262px;
  width:234px;height:50px;
}
.quote__line{
  position:absolute;
  width:67px;height:0;
  left:0;top:13px;
  border:1px solid var(--accent);
}
.quote__author .p-body{
  position:absolute;
  left:85px;top:0;
  width:149px;height:50px;
}

/* 8) CONTACT split */
.contact{
  position:absolute;
  left:0;
  top:9280px;
  width:1920px;height:835px;
  display:flex;
}
.contact__left{
  position:relative;
  width:960px;height:835px;
  background:#211813;
  box-shadow:0 0 30px rgba(0,0,0,0.25);
}
.contact__leftBg{
  position:absolute;
  left:0;top:-69px;
  width:960px;height:640px;
  background:#000;
  opacity:.05;
}
.contact__leftOverlayTop{
  position:absolute;left:0;top:0;
  width:960px;height:288px;
  background:linear-gradient(180deg,#000 0%,rgba(0,0,0,0) 100%);
}
.contact__leftOverlayBottom{
  position:absolute;left:0;bottom:0;
  width:960px;height:288px;
  background:linear-gradient(180deg,#000 0%,rgba(0,0,0,0) 100%);
  transform:scaleY(-1);
}
.contact__watermark{
  position:absolute;
  left:-178px;top:-750px;
  width:2240px;height:590px;
  opacity:.04;
  background:#000;
  transform:rotate(90deg);
}
.contact__copy{
  position:absolute;
  width:597px;height:128px;
  left:calc(50% - 597px/2 + 13.5px);
  top:calc(50% - 128px/2 - 128px);
  display:flex;
  flex-direction:column;
  gap:36px;
}

.contact__right{
  position:relative;
  width:960px;height:747px;
  top:44px;
  background:#fff;
}
.form{
  position:absolute;
  width:463px;height:410px;
  left:249px;
  top:calc(50% - 410px/2 + 0.5px);
}
.form__fields{
  position:absolute;
  left:calc(50% - 444px/2 - 0.5px);
  top:0;
  width:444px;height:211px;
  display:flex;
  flex-direction:column;
  gap:46px;
}
.field{
  width:444px;
  height:60px;
  border-bottom:2px solid var(--muted);
  display:flex;
  align-items:center;
  gap:30px;
  padding:19px 14px;
}
.field__label{
  font-family:var(--ff-h);
  font-weight:400;
  font-size:14px;
  line-height:19px;
  letter-spacing:4px;
  text-transform:uppercase;
  color:var(--muted);
}
.field__input{
  border:0;
  outline:none;
  background:transparent;
  font-family:var(--ff-b);
  font-weight:400;
  font-size:18px;
  line-height:22px;
  letter-spacing:4px;
  text-transform:uppercase;
  color:var(--accent);
  width:100%;
}
.field--phone{
  height:62px;
  border-bottom:2px solid rgba(166,160,158,0.4);
}
.field__phoneRow{
  display:flex;
  align-items:center;
  gap:18px;
  width:100%;
}
.field__phoneMeta{
  display:flex;
  align-items:center;
  gap:2px;
  width:auto;
  color:var(--ink);
}
.field__code{
  font-family:var(--ff-b);
  font-size:18px;
  letter-spacing:0;
  text-transform:uppercase;
  color:var(--ink);
}
.field__caret{font-size:18px;color:var(--ink)}
.checkbox{
  display:flex;
  align-items:center;
  gap:9px;
  width:444px;
  height:25px;
}
.checkbox__box{
  width:21px;height:21px;
  border:1px solid #ADADAD;
}
.checkbox__input{position:absolute;opacity:0;pointer-events:none}
.checkbox__label{
  font-family:var(--ff-b);
  font-size:12px;
  line-height:25px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--muted);
}
.link-underline--wide{
  position:absolute;
  left:calc(50% - 463px/2);
  top:348px;
  background:transparent;
  border-left:0;border-right:0;border-top:0;
  cursor:pointer;
}

/* 9) FOOTER */
.footer{
  position:absolute;
  left:0;
  top:10115px;
  width:1920px;height:391px;
  background:var(--bg);
}
.footer__wrap{
  position:absolute;
  width:380px;height:239px;
  left:770.5px;
  top:calc(50% - 239px/2);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:32px;
}
.logo--footer img{height:74px}
.footer__nav{
  display:flex;
  align-items:center;
  gap:36px;
  height:33px;
}
.footer__link{
  font-family:var(--ff-b);
  font-size:12px;
  line-height:15px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--dark);
}
.footer__social{
  display:flex;
  gap:7px;
}
.social-btn{
  width:33px;height:32px;
  border:1px solid var(--muted);
  background:transparent;
}
.footer__copy{
  font-family:var(--ff-b);
  font-size:12px;
  line-height:15px;
  letter-spacing:2px;
  text-transform:uppercase;
  text-align:center;
  color:#000;
}

/* Safety: prevent selection highlight weirdness */
::selection{background:rgba(201,168,106,.25)}
