/* ===========================================================
   NOBLE & HOURS — Shared Design System
   =========================================================== */

:root{
  --ink:        #0a0a0a;
  --ink-2:      #141210;
  --ink-3:      #1c1a17;
  --bone:       #f5efe4;
  --bone-2:     #ece4d4;
  --sand:       #d4c5a9;
  --sand-2:     #b7a687;
  --gold:       #c9a961;
  --gold-soft:  #a88f4d;
  --gold-glow:  rgba(201,169,97,.18);
  --line:       rgba(201,169,97,.28);
  --line-soft:  rgba(245,239,228,.12);
  --shadow-lux: 0 30px 80px -20px rgba(0,0,0,.65), 0 10px 30px -10px rgba(0,0,0,.4);
  --radius:     18px;
  --radius-lg:  28px;
  --ease:       cubic-bezier(.22,.61,.36,1);
  --display:    'Cormorant Garamond', 'Times New Roman', serif;
  --accent:     'Italiana', 'Cormorant Garamond', serif;
  --sans:       'Jost', -apple-system, BlinkMacSystemFont, sans-serif;
}

*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  font-family: var(--sans);
  font-weight: 300;
  color: var(--bone);
  background: var(--ink);
  line-height: 1.6;
  letter-spacing: .015em;
  overflow-x: hidden;
  background-image:
    radial-gradient(1200px 600px at 80% -10%, rgba(201,169,97,.06), transparent 60%),
    radial-gradient(900px 500px at -10% 40%, rgba(201,169,97,.04), transparent 60%);
}

body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.8'/></svg>");
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; cursor:pointer; border:0; background:none; color:inherit; }

/* ========== TYPOGRAPHY ========== */
.eyebrow{
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: 11px;
  color: var(--gold);
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before,
.eyebrow::after{
  content:"";
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: .6;
}
.eyebrow.left::before,
.eyebrow.left::after{ display:none; }

.display{
  font-family: var(--display);
  font-weight: 300;
  letter-spacing: -.01em;
  line-height: 1.02;
}
.display em{ font-style: italic; color: var(--gold); font-weight: 300; }

.section-title{
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -.015em;
}
.section-title em{ font-style: italic; color: var(--gold); }

.page-title{
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1;
  letter-spacing: -.02em;
}
.page-title em{ font-style: italic; color: var(--gold); }

.lead{
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  line-height: 1.55;
  color: rgba(245,239,228,.82);
}

/* ========== LAYOUT ========== */
.wrap{
  width: min(1280px, 92%);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
section{ padding: clamp(80px, 10vw, 140px) 0; position: relative; }

/* ========== NAVIGATION ========== */
.nav{
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 22px 0;
  transition: background .45s var(--ease), padding .45s var(--ease), border-color .45s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled,
.nav.solid{
  background: rgba(10,10,10,.82);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  padding: 14px 0;
  border-bottom-color: var(--line-soft);
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 24px;
}
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  color: var(--bone);
}
.brand-mark{
  width: 38px; height: 38px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display:grid; place-items:center;
  font-family: var(--accent);
  font-size: 18px;
  color: var(--gold);
  position: relative;
  transition: transform .5s var(--ease);
}
.brand-mark::after{
  content:"";
  position:absolute; inset:4px;
  border-radius:50%;
  border:1px solid rgba(201,169,97,.35);
}
.brand:hover .brand-mark{ transform: rotate(-12deg); }
.brand-name{
  font-family: var(--accent);
  font-size: 17px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--bone);
}
.brand-name span{ color: var(--gold); }
.nav-links{
  display:flex; gap: 38px;
  list-style:none;
}
.nav-links a{
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: .24em;
  color: rgba(245,239,228,.78);
  position: relative;
  padding: 6px 0;
  transition: color .3s var(--ease);
}
.nav-links a::after{
  content:"";
  position:absolute; left:0; bottom:0;
  width:0; height:1px;
  background: var(--gold);
  transition: width .4s var(--ease);
}
.nav-links a:hover,
.nav-links a.active{ color: var(--bone); }
.nav-links a:hover::after,
.nav-links a.active::after{ width:100%; }

.btn{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .28em;
  font-weight: 400;
  border-radius: 999px;
  transition: all .45s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-gold{
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
}
.btn-gold:hover{
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px var(--gold-glow);
}
.btn-outline{
  background: transparent;
  color: var(--bone);
  border: 1px solid rgba(245,239,228,.3);
}
.btn-outline:hover{
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn svg{ width:14px; height:14px; }
.nav-cta{ padding: 11px 22px; }

.hamburger{
  display:none;
  width:42px; height:42px;
  place-items:center;
  border:1px solid var(--line-soft);
  border-radius: 50%;
}
.hamburger span{
  width:18px; height:1px;
  background: var(--bone);
  position: relative;
}
.hamburger span::before,
.hamburger span::after{
  content:"";
  position: absolute; left:0;
  width:18px; height:1px;
  background: var(--bone);
}
.hamburger span::before{ top:-6px; }
.hamburger span::after{ top:6px; }

.mobile-menu{
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 99;
  display:none;
  flex-direction: column;
  justify-content:center;
  align-items:center;
  gap: 30px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s var(--ease);
}
.mobile-menu.open{ opacity: 1; pointer-events: auto; }
.mobile-menu a{
  font-family: var(--display);
  font-size: 1.8rem;
  letter-spacing: .02em;
}
.mobile-menu a:hover{ color: var(--gold); }
.mobile-menu .btn{ margin-top: 10px; }

/* ========== PAGE HERO (sub-pages) ========== */
.page-hero{
  position: relative;
  padding: 180px 0 90px;
  min-height: 72vh;
  display:flex;
  align-items:flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}
.page-hero-bg{
  position:absolute; inset:0;
  z-index:0;
}
.page-hero-bg::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(10,10,10,.55) 0%, rgba(10,10,10,.35) 40%, rgba(10,10,10,.95) 100%),
    linear-gradient(90deg, rgba(10,10,10,.6), rgba(10,10,10,.15) 70%);
  z-index: 1;
}
.page-hero-bg img{
  width:100%; height:100%;
  object-fit: cover;
  object-position: center 35%;
  animation: heroZoom 14s var(--ease) forwards;
}
@keyframes heroZoom{
  from{ transform: scale(1.08); }
  to  { transform: scale(1); }
}
.page-hero-inner{
  position:relative; z-index:2;
  max-width: 880px;
  padding-bottom: 30px;
}
.page-hero .page-title{
  margin: 24px 0 22px;
}
.page-hero .lead{
  max-width: 620px;
  color: rgba(245,239,228,.86);
}
.breadcrumb{
  display:flex; align-items:center; gap: 14px;
  font-size: 10.5px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(245,239,228,.55);
  margin-top: 40px;
}
.breadcrumb a{ color: rgba(245,239,228,.55); transition: color .3s var(--ease); }
.breadcrumb a:hover{ color: var(--gold); }
.breadcrumb span{ color: var(--gold); }
.breadcrumb svg{ width: 10px; height: 10px; color: rgba(245,239,228,.3); }

/* ========== BUTTONS & CTAs ========== */
.cta-band{
  padding: clamp(60px, 8vw, 100px) 0;
  text-align: center;
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(201,169,97,.08), transparent 60%),
    var(--ink-2);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.cta-band .section-title{
  max-width: 760px;
  margin: 18px auto 28px;
}
.cta-band .lead{
  max-width: 560px;
  margin: 0 auto 40px;
}

/* ========== FOOTER ========== */
footer{
  background: var(--ink-2);
  padding: 80px 0 30px;
  border-top: 1px solid var(--line-soft);
}
.foot-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line-soft);
}
.foot-about .brand{ margin-bottom: 22px; }
.foot-about p{
  font-size: .9rem;
  color: rgba(245,239,228,.6);
  line-height: 1.75;
  max-width: 340px;
  margin-bottom: 26px;
}
.socials{ display:flex; gap: 12px; }
.socials a{
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display:grid; place-items:center;
  color: var(--bone);
  transition: all .4s var(--ease);
}
.socials a:hover{
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-3px);
}
.socials svg{ width: 16px; height: 16px; }
.foot-col h4{
  font-family: var(--accent);
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.foot-col ul{ list-style:none; display:flex; flex-direction: column; gap: 12px; }
.foot-col a{
  font-size: .9rem;
  color: rgba(245,239,228,.65);
  transition: color .3s var(--ease);
}
.foot-col a:hover{ color: var(--gold); }
.foot-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .8rem;
  color: rgba(245,239,228,.45);
  letter-spacing: .05em;
}
.foot-bottom .legal{ display:flex; gap: 24px; }

/* ========== REVEAL ========== */
.reveal{
  opacity:0;
  transform: translateY(40px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}
.reveal.in{ opacity:1; transform: translateY(0); }
.reveal.delay-1{ transition-delay: .15s; }
.reveal.delay-2{ transition-delay: .3s; }
.reveal.delay-3{ transition-delay: .45s; }
.reveal.delay-4{ transition-delay: .6s; }

/* ========== RESPONSIVE BASE ========== */
@media (max-width: 1024px){
  .foot-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px){
  .nav-links, .nav-cta-wrap{ display: none; }
  .hamburger{ display: grid; }
  .mobile-menu{ display: flex; }
  .foot-grid{ grid-template-columns: 1fr; gap: 40px; }
  .foot-bottom{ flex-direction: column; text-align:center; }
  .page-hero{ padding: 140px 0 70px; min-height: 60vh; }
}
