:root{
  --bg:#F6F1EA;
  --bg-soft:#EFE7DC;
  --bg-card:#FFFCF8;
  --text:#1A1A1A;
  --muted:#6B655E;
  --gold:#C6A96B;
  --line:rgba(0,0,0,0.08);
  --radius:28px;
  --radius-lg:34px;
  --shadow:0 20px 60px rgba(0,0,0,0.06);
  --container:1200px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
  cursor:none;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
  color:inherit;
}

button,
input,
textarea,
select{
  font:inherit;
}

.container{
  width:min(100% - 40px,var(--container));
  margin:auto;
}

.narrow{
  max-width:820px;
  margin:0 auto;
  text-align:center;
}

.section-space{
  padding:110px 0;
}

/* Loader */
.site-loader{
  position:fixed;
  inset:0;
  background:rgba(246,241,234,0.97);
  backdrop-filter:blur(10px);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:5000;
  transition:opacity .7s ease, visibility .7s ease;
}

.site-loader.hidden{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}

.loader-inner{
  text-align:center;
}

.loader-logo{
  width:90px;
  margin:0 auto 14px;
}

.loader-text{
  display:block;
  font-family:'Cormorant Garamond',serif;
  font-size:2rem;
  letter-spacing:.18em;
  color:var(--text);
}

/* Scroll progress */
.scroll-progress{
  position:fixed;
  top:0;
  left:0;
  height:3px;
  width:0;
  background:var(--gold);
  z-index:4000;
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  background:rgba(246,241,234,0.85);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--line);
  z-index:999;
}

.header-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  min-height:90px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.brand-logo{
  width:42px;
  height:42px;
  object-fit:contain;
  flex-shrink:0;
}

.brand-text{
  display:flex;
  flex-direction:column;
  min-width:0;
}

.brand-kicker{
  font-size:11px;
  letter-spacing:.25em;
  color:var(--muted);
  text-transform:uppercase;
  line-height:1.2;
}

.brand-name{
  font-family:'Cormorant Garamond',serif;
  font-size:1.7rem;
  font-weight:600;
  letter-spacing:.08em;
  line-height:1;
}

.nav{
  display:flex;
  align-items:center;
  gap:28px;
}

.nav a{
  font-size:.95rem;
  color:var(--muted);
  position:relative;
  transition:.3s ease;
}

.nav a.active,
.nav a:hover{
  color:var(--text);
}

.nav a.active::after,
.nav a:hover::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:100%;
  height:1px;
  background:var(--text);
}

.menu-toggle{
  display:none;
  background:none;
  border:none;
  font-size:1.7rem;
  color:var(--text);
  cursor:pointer;
}

.mobile-menu{
  display:none;
  flex-direction:column;
  gap:16px;
  padding:20px;
  border-top:1px solid var(--line);
  background:#fff;
}

.mobile-menu.active{
  display:flex;
}

.mobile-menu a{
  color:var(--muted);
  font-size:1rem;
}

/* Hero */
.hero{
  min-height:85vh;
  display:flex;
  align-items:center;
  padding:120px 0;
  position:relative;
  overflow:hidden;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:60px;
  align-items:center;
  max-width:1200px;
  margin:0 auto;
}

.hero-kicker{
  font-size:12px;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:#8B7650;
  margin-bottom:20px;
}

.hero h1{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(3.5rem,7vw,6.5rem);
  line-height:.9;
  margin-bottom:18px;
}

.hero-tagline{
  font-size:1.1rem;
  color:var(--gold);
  margin-bottom:18px;
  letter-spacing:.04em;
}

.hero-text{
  max-width:560px;
  line-height:1.9;
  color:var(--muted);
  margin-bottom:32px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.btn{
  padding:14px 28px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:.3s ease;
  border:1px solid transparent;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn-dark{
  background:#1A1A1A;
  color:#fff;
}

.btn-light{
  background:#fff;
  border:1px solid var(--line);
  color:var(--text);
}

.hero-visual{
  position:relative;
}

.hero-logo-shell{
  background:linear-gradient(145deg,#fff,#F0E9DF);
  border-radius:40px;
  padding:80px 40px;
  box-shadow:var(--shadow);
  position:relative;
  z-index:2;
}

.hero-main-logo{
  width:min(100%,360px);
  margin:auto;
  transition:transform .2s ease-out;
}

.hero-ring{
  position:absolute;
  border-radius:50%;
  filter:blur(70px);
  opacity:.4;
  pointer-events:none;
  transition:transform .2s ease-out;
}

.hero-ring-one{
  width:340px;
  height:340px;
  background:rgba(198,169,107,.25);
  top:10%;
  right:10%;
}

.hero-ring-two{
  width:260px;
  height:260px;
  background:rgba(160,145,120,.15);
  bottom:10%;
  left:10%;
}

/* Shared headings */
.section-label{
  font-size:12px;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:#8B7650;
  margin-bottom:16px;
}

.section-head{
  text-align:center;
  margin-bottom:50px;
}

.section-head h2{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2.5rem,5vw,4.8rem);
  line-height:.95;
}

/* Philosophy */
.philosophy-strip{
  padding:95px 0;
  background:var(--bg-soft);
}

.philosophy-strip h2{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2.4rem,5vw,4.5rem);
  line-height:1.02;
}

/* Cards */
.lux-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
  margin-top:50px;
}

.lux-card{
  background:#fff;
  border-radius:var(--radius);
  padding:36px;
  box-shadow:var(--shadow);
  transition:.4s ease;
  min-height:280px;
  display:flex;
  align-items:flex-end;
}

.lux-card:hover{
  transform:translateY(-8px);
}

.lux-card-inner{
  width:100%;
}

.card-count{
  display:inline-block;
  font-size:.85rem;
  letter-spacing:.18em;
  color:#8B7650;
  margin-bottom:16px;
}

.lux-card h3{
  font-family:'Cormorant Garamond',serif;
  font-size:2rem;
  margin-bottom:12px;
}

.lux-card p{
  color:var(--muted);
  line-height:1.8;
}

/* Statement */
.statement-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:start;
}

.statement-left h2{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2.6rem,5vw,4.8rem);
  line-height:1;
}

.statement-right p{
  color:var(--muted);
  line-height:2;
  padding-top:20px;
}

/* Journal */
.journal-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:50px;
}

.journal-card{
  background:#fff;
  border-radius:var(--radius);
  padding:30px;
  box-shadow:var(--shadow);
  transition:.35s ease;
}

.journal-card:hover{
  transform:translateY(-6px);
}

.journal-card span{
  font-size:.8rem;
  letter-spacing:.12em;
  color:#8B7650;
  text-transform:uppercase;
  display:block;
  margin-bottom:10px;
}

.journal-card h3{
  font-family:'Cormorant Garamond',serif;
  font-size:1.8rem;
  margin-bottom:10px;
}

.journal-card p{
  color:var(--muted);
  line-height:1.9;
}

/* Access panel */
.access-panel{
  background:#fff;
  border-radius:34px;
  padding:70px;
  text-align:center;
  box-shadow:var(--shadow);
}

.access-panel h2{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2.5rem,5vw,4.6rem);
  line-height:.98;
}

.access-panel p{
  color:var(--muted);
  line-height:1.9;
  max-width:700px;
  margin:18px auto 26px;
}

/* Footer */
.site-footer{
  border-top:1px solid var(--line);
  padding-top:60px;
  padding-bottom:30px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

.footer-brand h3{
  font-family:'Cormorant Garamond',serif;
  font-size:2rem;
  margin-bottom:10px;
}

.footer-brand p{
  color:var(--muted);
  line-height:1.85;
  max-width:420px;
}

.footer-logo{
  width:50px;
  margin-bottom:14px;
}

.footer-links-wrap{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.footer-column h4{
  font-size:.95rem;
  margin-bottom:14px;
}

.footer-column a{
  display:block;
  color:var(--muted);
  margin-bottom:10px;
  line-height:1.6;
}

.social-icons{
  display:flex;
  gap:10px;
  margin-top:10px;
}

.social-icons a{
  width:34px;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--line);
  border-radius:50%;
  font-size:.75rem;
  transition:.3s ease;
}

.social-icons a:hover{
  background:#fff;
  transform:translateY(-2px);
}

.footer-bottom{
  border-top:1px solid var(--line);
  margin-top:28px;
  padding-top:20px;
}

.footer-bottom p{
  color:var(--muted);
  font-size:.92rem;
}

/* Cursor */
.cursor-dot,
.cursor-outline{
  position:fixed;
  top:0;
  left:0;
  transform:translate(-50%,-50%);
  pointer-events:none;
  border-radius:50%;
  z-index:3000;
}

.cursor-dot{
  width:8px;
  height:8px;
  background:#000;
}

.cursor-outline{
  width:34px;
  height:34px;
  border:1px solid rgba(0,0,0,.25);
  transition:width .2s ease,height .2s ease;
}

/* Responsive */
@media(max-width:1100px){
  .hero-grid,
  .lux-grid,
  .journal-grid,
  .statement-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .footer-links-wrap{
    grid-template-columns:1fr 1fr;
  }

  .hero{
    min-height:auto;
    padding:80px 0;
  }

  .hero-visual{
    order:-1;
  }
}

@media(max-width:900px){
  body{
    cursor:auto;
  }

  .cursor-dot,
  .cursor-outline{
    display:none;
  }

  .nav{
    display:none;
  }

  .menu-toggle{
    display:block;
  }

  .hero-grid{
    grid-template-columns:1fr;
    gap:40px;
  }

  .lux-grid,
  .journal-grid{
    grid-template-columns:1fr;
  }

  .footer-grid,
  .footer-links-wrap{
    grid-template-columns:1fr;
  }

  .hero-logo-shell,
  .access-panel{
    padding:45px 22px;
  }

  .hero-main-logo{
    width:min(100%,260px);
  }

  .hero-ring-one{
    width:220px;
    height:220px;
  }

  .hero-ring-two{
    width:180px;
    height:180px;
  }
}

@media(max-width:600px){
  .container{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding-left:24px;
  padding-right:24px;
}

  .header-wrap{
    min-height:78px;
  }

  .brand-logo{
    width:34px;
    height:34px;
  }

  .brand-kicker{
    font-size:9px;
    letter-spacing:.18em;
  }

  .brand-name{
    font-size:1.35rem;
  }

  .hero h1{
    font-size:2.8rem;
  }

  .hero-text{
    font-size:.98rem;
  }

  .section-space,
  .philosophy-strip{
    padding:80px 0;
  }

  .access-panel{
    padding:40px 18px;
  }

  .btn{
    width:100%;
  }

  .hero-actions{
    flex-direction:column;
  }
}
/* Luxury homepage upgrade */
.hero-left{
  position:relative;
  z-index:2;
}

.hero-right{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:520px;
}

.hero-logo-shell{
  border:1px solid rgba(0,0,0,0.06);
  background:linear-gradient(145deg, rgba(255,255,255,0.92), rgba(240,233,223,0.92));
}

.hero-kicker{
  display:inline-block;
  position:relative;
}

.hero-kicker::after{
  content:"";
  display:block;
  width:72px;
  height:1px;
  background:rgba(139,118,80,0.45);
  margin-top:12px;
}

.hero-actions .btn{
  min-width:210px;
}

.btn-dark{
  box-shadow:0 14px 30px rgba(26,26,26,0.10);
}

.btn-light{
  background:rgba(255,255,255,0.72);
  backdrop-filter:blur(8px);
}

.btn-light:hover{
  background:#fff;
}

.hero::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:120px;
  background:linear-gradient(to bottom, rgba(246,241,234,0), rgba(246,241,234,1));
  pointer-events:none;
}

.lux-card{
  position:relative;
  overflow:hidden;
  border:1px solid rgba(0,0,0,0.04);
}

.lux-card::before{
  content:"";
  position:absolute;
  top:-40px;
  right:-40px;
  width:180px;
  height:180px;
  background:radial-gradient(circle, rgba(198,169,107,0.14) 0%, rgba(198,169,107,0) 70%);
  pointer-events:none;
}

.lux-card::after{
  content:"";
  position:absolute;
  left:36px;
  right:36px;
  bottom:28px;
  height:1px;
  background:linear-gradient(to right, rgba(198,169,107,0), rgba(198,169,107,0.45), rgba(198,169,107,0));
  opacity:0;
  transition:.35s ease;
}

.lux-card:hover::after{
  opacity:1;
}

.section-head h2{
  max-width:700px;
  margin:0 auto;
}

.home-divider{
  padding:80px 0;
  background:linear-gradient(180deg, rgba(239,231,220,0.55), rgba(246,241,234,0.7));
}

.home-divider-panel{
  background:rgba(255,255,255,0.62);
  backdrop-filter:blur(8px);
  border:1px solid rgba(0,0,0,0.05);
  border-radius:34px;
  box-shadow:var(--shadow);
  padding:60px 34px;
  text-align:center;
}

.home-divider-panel h2{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2.4rem,5vw,4.5rem);
  line-height:1.02;
  margin-bottom:14px;
}

.home-divider-panel p{
  max-width:760px;
  margin:0 auto;
  color:var(--muted);
  line-height:1.95;
}

@media(max-width:900px){
  .hero-right{
    min-height:auto;
  }

  .hero-actions .btn{
    min-width:100%;
  }

  .home-divider-panel{
    padding:40px 20px;
  }
}