:root{
  --bg:#f3ede4;
  --bg-2:#e8e0d2;
  --bg-3:#d5c4ad;
  --paper:#fffdfa;
  --paper-2:#f8f2e8;
  --ivory:#fcf7ef;
  --ink:#191a24;
  --ink-soft:#313346;
  --navy:#20264b;
  --navy-2:#293054;
  --lavender:#6e649a;
  --lavender-soft:#8a82b6;
  --dusty-blue:#6f8b98;
  --dusty-blue-soft:#8da5b0;
  --gold:#c2ad6b;
  --gold-soft:#ead9a2;
  --bronze:#8d6544;
  --slate:#5e6255;
  --muted:#5f5860;
  --line:#d3c4a8;
  --stone:#baa087;
  --stone-dark:#6d5847;
  --sand:#d6b48a;
  --sand-2:#eed8b7;
  --olive:#74785b;
  --sage:#9aa183;
  --terracotta:#b86d4b;
  --terracotta-soft:#dfae8a;
  --accent:#c8aa82;
  --max:1180px;
  --shadow:0 28px 75px rgba(25,26,36,.14);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:
    radial-gradient(circle at 84% 8%, rgba(194,173,107,.10), transparent 18%),
    radial-gradient(circle at 9% 84%, rgba(111,139,152,.10), transparent 14%),
    radial-gradient(circle at 60% 45%, rgba(110,100,154,.05), transparent 20%),
    linear-gradient(180deg, #fbf7f0 0%, #f2e8dd 100%);
  color:var(--ink);
  font-family:"Inter",system-ui,sans-serif;
  line-height:1.6;
}
a{text-decoration:none;color:inherit}
h1,h2,h3,.brand-copy strong,.footer-brand,.contact-phone,.btn{
  font-family:"Cormorant Garamond",Georgia,serif;
}
.container{width:min(var(--max),calc(100% - 40px));margin:auto}

/* Header */
.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(255,253,250,.84);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(22,17,13,.12);
}
.nav{
  min-height:86px;
  display:flex;
  align-items:center;
  gap:28px;
}
.brand{display:flex;align-items:center;gap:14px}
.brand-mark{
  width:46px;height:46px;border-radius:50%;
  display:grid;place-items:center;
  background:linear-gradient(145deg,var(--ink) 0%, var(--terracotta) 50%, var(--gold) 100%);
  color:#fff;
  font-size:1.35rem;
  box-shadow:0 10px 24px rgba(122,102,83,.18);
}
.brand-copy{display:flex;flex-direction:column;line-height:1.04}
.brand-copy strong{font-size:1.15rem;letter-spacing:.02em}
.brand-copy small{font-size:.68rem;color:var(--muted);margin-top:4px}
.desktop-nav{display:flex;gap:28px;margin-left:auto}
.desktop-nav a{
  font-size:.8rem;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:700;
  color:var(--ink);
}
.header-phone{
  margin-left:8px;
  padding:10px 14px;
  border:1px solid var(--ink);
  font-size:.78rem;
  font-weight:700;
  color:var(--ink);
  background:linear-gradient(180deg, var(--paper) 0%, var(--ivory) 48%, var(--paper-2) 100%);
  transition:.18s;
}
.header-phone:hover{background:var(--ink);color:#fff}

/* Signature */
.signature-strokes,
.premium-mark{
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.signature-strokes span,
.premium-mark span{
  display:block;
  border-radius:999px;
}
.signature-strokes span{
  height:10px;
  box-shadow:0 0 0 1px rgba(109,88,71,.08) inset, 0 8px 18px rgba(182,139,87,.12);
}
.signature-strokes span:nth-child(1){
  width:108px;
  background:linear-gradient(90deg,var(--ink),var(--bronze));
}
.signature-strokes span:nth-child(2){
  width:34px;
  background:linear-gradient(90deg,var(--gold-soft),var(--terracotta));
}
.signature-strokes span:nth-child(3){
  width:72px;
  background:linear-gradient(90deg,var(--olive),var(--sage));
}
.signature-strokes-large span:nth-child(1){width:126px}
.signature-strokes-large span:nth-child(2){width:42px}
.signature-strokes-large span:nth-child(3){width:84px}
.signature-strokes-dark span:nth-child(1){background:linear-gradient(90deg,var(--ink),var(--stone-dark))}
.signature-strokes-dark span:nth-child(2){background:linear-gradient(90deg,var(--sand-2),#d8b98b)}
.signature-strokes-dark span:nth-child(3){background:linear-gradient(90deg,var(--olive),#9aa175)}
.premium-mark{
  gap:6px;
  margin-bottom:16px;
}
.premium-mark span{
  height:4px;
  box-shadow:0 1px 0 rgba(255,255,255,.3) inset;
}
.premium-mark span:nth-child(1){
  width:44px;
  background:linear-gradient(90deg,var(--gold-soft),var(--terracotta));
}
.premium-mark span:nth-child(2){
  width:18px;
  background:linear-gradient(90deg,var(--stone),var(--bronze));
}
.premium-mark span:nth-child(3){
  width:28px;
  background:linear-gradient(90deg,var(--olive),#9aa175);
}

/* Hero */
.hero{
  position:relative;
  padding:92px 0 0;
  overflow:hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(182,139,87,.18), transparent 20%),
    radial-gradient(circle at 18% 72%, rgba(184,109,75,.10), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,0));
}
.hero:after{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(109,88,71,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109,88,71,.04) 1px, transparent 1px);
  background-size:72px 72px;
  mask-image:linear-gradient(to right,#000 0%,transparent 82%);
  pointer-events:none;
}
.hero-bg{
  position:absolute;border-radius:50%;filter:blur(8px);pointer-events:none;
}
.hero-bg-a{
  width:360px;height:360px;right:-90px;top:20px;
  background:radial-gradient(circle, rgba(200,170,130,.24) 0%, rgba(200,170,130,0) 72%);
}
.hero-bg-b{
  width:220px;height:220px;left:-80px;bottom:140px;
  background:radial-gradient(circle, rgba(125,130,96,.16) 0%, rgba(125,130,96,0) 72%);
}
.hero-lines{
  position:absolute;right:8%;top:130px;display:grid;gap:16px;opacity:.44
}
.hero-lines span{
  display:block;height:1px;width:280px;
  background:linear-gradient(90deg, rgba(184,109,75,0), rgba(184,109,75,.60), rgba(184,109,75,0));
  transform:rotate(-18deg);
}
.hero-lines span:nth-child(2){width:200px}
.hero-lines span:nth-child(3){width:140px}

.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:70px;
  align-items:center;
}
.eyebrow,.section-kicker{
  display:inline-flex;align-items:center;gap:10px;
  font-size:.7rem;
  font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--stone-dark);
}
.eyebrow:before,.section-kicker:before{
  content:"";width:24px;height:1px;background:currentColor;opacity:.8
}
.hero h1{
  font-size:clamp(4.5rem,8vw,8rem);
  line-height:.86;
  letter-spacing:-.05em;
  margin:18px 0 22px;
  max-width:640px;
}
.hero-copy>p{
  font-size:1.04rem;
  color:var(--ink-soft);
  max-width:610px;
}
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:34px 0 36px;
}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:14px 22px;
  border-radius:999px;
  font-size:1.08rem;
  font-weight:600;
  transition:.18s;
}
.btn:hover{transform:translateY(-2px)}
.btn-dark{
  background:linear-gradient(145deg,var(--navy) 0%, var(--lavender) 55%, var(--gold) 100%);
  color:#fff;
  box-shadow:0 14px 32px rgba(29,23,18,.16);
}
.btn-light{
  background:linear-gradient(145deg, rgba(255,255,255,.88), rgba(238,216,183,.55));
  border:1px solid rgba(22,17,13,.14);
  color:var(--ink);
}
.hero-points{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}
.hero-points div{
  padding:18px;
  border:1px solid rgba(22,17,13,.10);
  border-radius:22px;
  background:linear-gradient(180deg, rgba(255,253,250,.92), rgba(246,236,222,.86));
  backdrop-filter:blur(10px);
}
.hero-points strong,.hero-points span{display:block}
.hero-points strong{font-size:1.05rem}
.hero-points span{font-size:.8rem;color:var(--muted);margin-top:4px}

.hero-visual{position:relative;min-height:560px}
.stone-panel{
  position:absolute;right:0;top:0;
  width:430px;min-height:500px;
  padding:24px;
  border-radius:34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.86) 0%, rgba(244,233,219,.96) 62%, rgba(232,216,196,.96) 100%);
  border:1px solid rgba(109,88,71,.16);
  box-shadow:var(--shadow);
  backdrop-filter:blur(10px);
}
.panel-top{
  display:flex;justify-content:space-between;gap:10px;
  font-size:.67rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--muted)
}
.stone-composition{
  position:relative;
  width:100%;
  height:320px;
  margin:28px 0 24px;
}
.stone-tile{
  position:absolute;
  border-radius:26px;
  background:
  linear-gradient(145deg,#f3eadf 0%, #d6b89d 58%, #bea18b 100%);
  border:1px solid rgba(122,102,83,.12);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.45);
}
.tile-a{left:0;top:0;width:150px;height:150px}
.tile-b{right:0;top:0;width:210px;height:150px}
.tile-c{left:0;bottom:0;width:210px;height:150px}
.tile-d{right:0;bottom:0;width:150px;height:150px}
.stone-circle{
  position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);
  width:108px;height:108px;border-radius:50%;
  display:grid;place-items:center;
  background:linear-gradient(145deg,var(--ink) 0%, var(--gold) 100%);
  color:#fff;
  font-size:2.2rem;
  box-shadow:0 18px 36px rgba(122,102,83,.20);
}
.panel-bottom strong,.panel-bottom small{display:block}
.panel-bottom strong{
  font-size:1.2rem;
  line-height:1.1;
}
.panel-bottom small{
  margin-top:6px;
  color:var(--muted);
  font-size:.82rem;
}
.floating-card{
  position:absolute;
  padding:16px 18px;
  border-radius:20px;
  background:var(--paper);
  box-shadow:0 16px 34px rgba(29,23,18,.12);
}
.floating-card span,.floating-card strong{display:block}
.floating-card span{
  font-size:.64rem;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--muted);
}
.floating-card strong{font-size:.92rem;margin-top:4px}
.floating-card-a{left:0;top:116px}
.floating-card-b{left:34px;bottom:38px}

.hero-meta{
  margin-top:42px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border-top:1px solid var(--line);
}
.hero-meta>div{
  padding:24px 18px 0 0;
}
.hero-meta span,.hero-meta strong{display:block}
.hero-meta span{
  font-size:.68rem;
  text-transform:uppercase;
  letter-spacing:.1em;
  color:var(--muted);
}
.hero-meta strong{
  font-size:.9rem;
  margin-top:6px;
  line-height:1.4;
}

/* Signature band */
.signature-band{
  position:relative;
  margin-top:74px;
  background:linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 34%, var(--lavender) 68%, var(--gold) 100%);
  color:#fff;
  overflow:hidden;
}
.signature-band:before{
  content:"";
  position:absolute;
  right:-80px;
  top:-80px;
  width:240px;
  height:240px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.12) 0%, rgba(255,255,255,0) 72%);
}
.signature-band:after{
  content:"";
  position:absolute;
  left:34px;
  right:34px;
  top:18px;
  bottom:18px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:26px;
  pointer-events:none;
}
.signature-band-inner{
  min-height:240px;
  display:grid;
  grid-template-columns:220px 1fr;
  gap:42px;
  align-items:center;
}
.signature-band p{
  margin:0;
  font-size:clamp(2rem,4vw,4.2rem);
  line-height:.96;
  font-family:"Cormorant Garamond",Georgia,serif;
}

/* Generic sections */
.section{padding:100px 0}
.section-grid{
  display:grid;
  grid-template-columns:140px 1fr;
  gap:56px;
}
.section-aside{
  display:flex;flex-direction:column;align-items:flex-start;gap:12px
}
.section-number{
  font-size:.72rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--stone-dark);
  font-weight:700;
}
.section-divider{width:1px;height:120px;background:var(--line)}
.section-label{
  writing-mode:vertical-rl;
  font-size:.64rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted);
}
.section-heading{max-width:760px;margin-bottom:50px}
.section-heading .signature-strokes{margin-bottom:16px}
.section h2{
  font-size:clamp(3rem,5vw,5.8rem);
  line-height:.92;
  letter-spacing:-.045em;
  margin:0 0 18px;
}
.section p{color:var(--ink-soft)}

/* Services */
.services-section{
  background:
    linear-gradient(180deg, rgba(255,255,255,.42) 0%, rgba(241,233,221,.80) 100%);
}
.service-list{
  border-top:1px solid var(--line);
}
.service-item{
  display:grid;
  grid-template-columns:82px 1fr;
  gap:24px;
  padding:28px 0;
  border-bottom:1px solid var(--line);
}
.service-index{
  font-size:.72rem;
  font-weight:700;
  color:var(--muted);
}
.service-text h3{
  font-size:1.9rem;
  line-height:1;
  margin:0 0 10px;
}
.service-text p{
  margin:0;
  max-width:680px;
  color:var(--muted);
}

/* Expertise */
.expertise-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:78px;
  align-items:center;
}
.expertise-art{
  min-height:460px;
  border-radius:34px;
  background:linear-gradient(145deg, #f0e5d8 0%, #dbc7b0 52%, #ccb193 100%);
  position:relative;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.expertise-circle{
  position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);
  width:220px;height:220px;border-radius:50%;
  border:1px solid rgba(122,102,83,.22);
}
.expertise-lines{
  position:absolute;inset:0;display:grid;place-items:center;gap:18px
}
.expertise-lines span{
  display:block;height:1px;background:rgba(122,102,83,.28);transform:rotate(-22deg)
}
.expertise-lines span:nth-child(1){width:340px}
.expertise-lines span:nth-child(2){width:220px}
.expertise-lines span:nth-child(3){width:150px}
.expertise-block{
  position:absolute;left:28px;bottom:26px;
  padding:18px 20px;
  background:linear-gradient(180deg, rgba(255,253,250,.92), rgba(243,234,220,.88));
  border-radius:20px;
  box-shadow:0 10px 24px rgba(29,23,18,.08);
}
.expertise-block small,.expertise-block strong{display:block}
.expertise-block small{
  font-size:.66rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--muted);
}
.expertise-block strong{font-size:1.4rem;margin-top:4px}

.expertise-copy .signature-strokes{margin-bottom:16px}
.facts-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-top:30px;
}
.facts-grid div{
  padding-top:16px;
  border-top:1px solid var(--line);
}
.facts-grid span,.facts-grid strong{display:block}
.facts-grid span{
  font-size:.67rem;
  text-transform:uppercase;
  letter-spacing:.1em;
  color:var(--muted);
}
.facts-grid strong{
  font-size:.88rem;
  margin-top:6px;
  line-height:1.45;
}

/* Contact */
.contact-section{
  background:linear-gradient(135deg, var(--navy) 0%, #30365f 38%, var(--lavender) 74%, var(--gold) 100%);
  color:#fff;
}
.contact-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:76px;
  align-items:start;
}
.section-kicker.light{color:#e0d0bc}
.contact-copy h2{margin:14px 0 18px}
.contact-copy p{color:#d9cec1}
.contact-card{
  background:linear-gradient(180deg, #fffdf9 0%, #f6eee3 62%, #ebddca 100%);
  color:var(--ink);
  padding:34px;
  border-radius:30px;
  box-shadow:0 28px 60px rgba(0,0,0,.18);
}
.contact-card .signature-strokes{margin-bottom:16px}
.contact-label{
  display:block;
  font-size:.7rem;
  text-transform:uppercase;
  letter-spacing:.11em;
  color:var(--muted);
  font-weight:700;
}
.contact-phone{
  display:inline-block;
  font-size:clamp(2.5rem,5vw,4.2rem);
  line-height:1;
  margin:12px 0 18px;
}
.contact-card p{color:var(--ink-soft)}
.contact-infos{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:26px;
  border-top:1px solid var(--line);
  padding-top:18px;
}
.contact-infos span,.contact-infos strong{display:block}
.contact-infos span{
  font-size:.68rem;
  text-transform:uppercase;
  letter-spacing:.1em;
  color:var(--muted);
}
.contact-infos strong{
  font-size:.86rem;
  line-height:1.45;
  margin-top:6px;
}
.btn-full{width:100%;margin-top:28px}

/* Footer */
.site-footer{
  background:linear-gradient(135deg,#140f0c 0%, #281e18 58%, #5c4938 100%);
  color:#e7ddd1;
  padding:60px 0 108px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:44px;
}
.footer-grid h3{
  margin:0 0 12px;
  font-size:.74rem;
  text-transform:uppercase;
  letter-spacing:.11em;
  color:#b9aa98;
}
.footer-brand{
  font-size:2.3rem;
  line-height:1;
  margin-top:12px;
}
.footer-grid p{max-width:300px;color:#b9aa98}
.footer-grid a,.footer-grid span{
  display:block;
  color:#cfbfad;
  margin:8px 0;
  font-size:.82rem;
}

.mobile-bar{display:none}

@media(max-width:980px){
  .desktop-nav{display:none}
  .hero-grid,.expertise-grid,.contact-grid,.section-grid{grid-template-columns:1fr}
  .section-aside{display:none}
  .hero-visual{min-height:520px}
  .stone-panel{right:50%;transform:translateX(50%)}
  .signature-band-inner{grid-template-columns:1fr;gap:20px;padding:44px 0}
  .hero-points,.facts-grid,.contact-infos,.footer-grid{grid-template-columns:1fr 1fr}
  .hero-meta{grid-template-columns:1fr}
}
@media(max-width:680px){
  .container{width:min(var(--max),calc(100% - 28px))}
  .nav{min-height:72px}
  .brand-copy small,.header-phone{display:none}
  .hero{padding-top:60px}
  .hero h1{font-size:4rem}
  .hero-points,.facts-grid,.contact-infos,.footer-grid{grid-template-columns:1fr}
  .hero-visual{min-height:430px}
  .stone-panel{width:min(92%,340px);min-height:390px;padding:18px}
  .stone-composition{height:250px}
  .tile-a,.tile-d{width:112px;height:112px}
  .tile-b,.tile-c{width:160px;height:112px}
  .stone-circle{width:82px;height:82px;font-size:1.8rem}
  .floating-card{display:none}
  .signature-band p{font-size:2.35rem}
  .section{padding:76px 0}
  .service-item{grid-template-columns:46px 1fr;gap:16px}
  .expertise-art{min-height:320px}
  .footer-grid{gap:18px}
  .mobile-bar{
    position:fixed;left:10px;right:10px;bottom:10px;z-index:60;
    display:grid;grid-template-columns:1fr 1fr;
    background:linear-gradient(135deg,#140f0c 0%, #281e18 58%, #5c4938 100%);padding:6px;border-radius:999px;
    box-shadow:0 18px 36px rgba(0,0,0,.24)
  }
  .mobile-bar a{text-align:center;padding:12px;color:#fff;font-weight:700}
  .mobile-bar a:first-child{
    background:linear-gradient(145deg,var(--ink) 0%, var(--gold) 100%);
    border-radius:999px
  }
}


.hero-ribbon{
  position:absolute;
  border-radius:999px;
  border:1px solid rgba(184,109,75,.18);
  background:linear-gradient(90deg, rgba(255,255,255,.24), rgba(184,109,75,.12));
  box-shadow:0 16px 40px rgba(22,17,13,.05);
  transform:rotate(-18deg);
  pointer-events:none;
}
.hero-ribbon-a{
  width:280px;
  height:56px;
  top:118px;
  right:11%;
}
.hero-ribbon-b{
  width:190px;
  height:44px;
  left:3%;
  bottom:110px;
  opacity:.72;
}

.stone-panel:before,
.stone-panel:after{
  content:"";
  position:absolute;
  border:1px solid rgba(182,139,87,.18);
  border-radius:26px;
  pointer-events:none;
}
.stone-panel:before{
  inset:18px;
}
.stone-panel:after{
  inset:34px 34px auto auto;
  width:84px;
  height:84px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(182,139,87,.10), rgba(182,139,87,0) 72%);
}
.premium-mark-hero{
  position:absolute;
  left:24px;
  bottom:20px;
  z-index:2;
}

.signature-medallion{
  width:92px;
  height:92px;
  border-radius:50%;
  justify-self:center;
  background:linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.14);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.18);
}
.signature-band-inner{
  position:relative;
  z-index:1;
}

.section-main{
  position:relative;
}
.section-main:before{
  content:"";
  position:absolute;
  inset:-14px -14px auto auto;
  width:120px;
  height:120px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(182,139,87,.08), rgba(182,139,87,0) 72%);
  pointer-events:none;
}
.service-item{
  position:relative;
}
.service-item:after{
  content:"";
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
  width:92px;
  height:2px;
  background:linear-gradient(90deg, rgba(184,109,75,0), rgba(184,109,75,.54));
}

.expertise-art:before{
  content:"";
  position:absolute;
  inset:18px;
  border-radius:24px;
  border:1px solid rgba(109,88,71,.10);
  pointer-events:none;
}
.expertise-art:after{
  content:"";
  position:absolute;
  right:22px;
  top:22px;
  width:108px;
  height:108px;
  border-radius:50%;
  border:1px solid rgba(182,139,87,.18);
  background:radial-gradient(circle, rgba(182,139,87,.08), rgba(182,139,87,0) 72%);
}
.premium-mark-art{
  position:absolute;
  left:24px;
  top:22px;
  z-index:2;
}

.contact-card{
  position:relative;
  overflow:hidden;
}
.contact-card:before{
  content:"";
  position:absolute;
  right:-34px;
  top:-34px;
  width:140px;
  height:140px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(182,139,87,.14), rgba(182,139,87,0) 72%);
}
.contact-card:after{
  content:"";
  position:absolute;
  inset:16px;
  border-radius:22px;
  border:1px solid rgba(109,88,71,.10);
  pointer-events:none;
}
.premium-mark-contact{
  position:relative;
  z-index:1;
}
.contact-card > *{
  position:relative;
  z-index:1;
}

.site-footer{
  position:relative;
  overflow:hidden;
  background:linear-gradient(135deg,var(--navy) 0%, #262d52 42%, var(--lavender) 74%, var(--gold) 100%);
}
.site-footer:before{
  content:"";
  position:absolute;
  right:-90px;
  bottom:-90px;
  width:280px;
  height:280px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(182,139,87,.12), rgba(182,139,87,0) 72%);
}
.site-footer:after{
  content:"";
  position:absolute;
  left:24px;
  right:24px;
  top:18px;
  bottom:18px;
  border:1px solid rgba(255,255,255,.06);
  border-radius:28px;
  pointer-events:none;
}
.footer-grid{
  position:relative;
  z-index:1;
}
.premium-mark-footer{
  margin-bottom:14px;
}

@media(max-width:980px){
  .hero-ribbon-a{
    right:2%;
    width:220px;
  }
}
@media(max-width:680px){
  .hero-ribbon,
  .service-item:after,
  .signature-medallion{
    display:none;
  }
  .signature-strokes span{
    height:9px;
  }
  .signature-strokes span:nth-child(1){width:82px}
  .signature-strokes span:nth-child(2){width:28px}
  .signature-strokes span:nth-child(3){width:54px}
}


.brand-copy strong,
.section h2,
.hero h1,
.footer-brand{
  text-shadow:0 1px 0 rgba(255,255,255,.12);
}

.service-text h3{
  color:var(--ink);
}

.panel-top,
.hero-meta span,
.section-number,
.section-label,
.contact-label,
.facts-grid span,
.contact-infos span,
.footer-grid h3{
  color:var(--gold);
}

.panel-bottom small,
.hero-points span,
.service-text p,
.section p,
.contact-card p,
.footer-grid p,
.footer-grid a,
.footer-grid span{
  color:var(--muted);
}

.site-footer .footer-grid h3{
  color:var(--gold-soft);
}
.site-footer .footer-grid a,
.site-footer .footer-grid span,
.site-footer .footer-grid p{
  color:#ebe6d8;
}


/* =========================================================
   SIGNATURE ART DÉCO — courbes, éventails, arches, marches
   ========================================================= */

:root{
  --deco-line: rgba(182,139,87,.42);
  --deco-line-soft: rgba(184,109,75,.22);
  --deco-light: rgba(255,255,255,.42);
}

/* Arches concentriques */
.deco-arch{
  position:absolute;
  width:240px;
  height:180px;
  pointer-events:none;
}
.deco-arch span{
  position:absolute;
  left:50%;
  bottom:0;
  transform:translateX(-50%);
  border:1px solid var(--deco-line);
  border-bottom:0;
  border-radius:120px 120px 0 0;
}
.deco-arch span:nth-child(1){width:220px;height:150px}
.deco-arch span:nth-child(2){width:168px;height:112px}
.deco-arch span:nth-child(3){width:116px;height:74px}

.deco-arch-hero{
  left:-42px;
  top:232px;
  opacity:.75;
  transform:rotate(90deg);
  z-index:1;
}
.deco-arch-expertise{
  right:22px;
  bottom:-20px;
  opacity:.58;
  transform:scale(.88);
}

/* Éventails Art déco */
.deco-fan{
  position:absolute;
  width:180px;
  height:110px;
  pointer-events:none;
}
.deco-fan i{
  position:absolute;
  left:50%;
  bottom:0;
  width:1px;
  height:96px;
  transform-origin:bottom center;
  background:linear-gradient(to top, var(--deco-line), rgba(182,139,87,0));
}
.deco-fan i:nth-child(1){transform:rotate(-44deg)}
.deco-fan i:nth-child(2){transform:rotate(-22deg)}
.deco-fan i:nth-child(3){transform:rotate(0deg)}
.deco-fan i:nth-child(4){transform:rotate(22deg)}
.deco-fan i:nth-child(5){transform:rotate(44deg)}

.deco-fan:after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-3px;
  transform:translateX(-50%);
  width:126px;
  height:63px;
  border:1px solid var(--deco-line);
  border-bottom:0;
  border-radius:90px 90px 0 0;
}
.deco-fan-hero{
  right:5%;
  bottom:54px;
  opacity:.72;
  transform:scale(1.12);
  z-index:1;
}
.deco-fan-band{
  right:18px;
  top:50%;
  transform:translateY(-50%) scale(1.25);
  opacity:.34;
}
.signature-band .deco-fan i{
  background:linear-gradient(to top, rgba(255,255,255,.44), rgba(255,255,255,0));
}
.signature-band .deco-fan:after{
  border-color:rgba(255,255,255,.30);
}

/* Coins géométriques */
.deco-corner{
  position:absolute;
  width:86px;
  height:86px;
  z-index:2;
  pointer-events:none;
}
.deco-corner:before,
.deco-corner:after{
  content:"";
  position:absolute;
  border-color:var(--deco-line);
}
.deco-corner-tl{
  top:16px;
  left:16px;
}
.deco-corner-tl:before{
  top:0;left:0;width:64px;height:1px;border-top:1px solid var(--deco-line);
}
.deco-corner-tl:after{
  top:0;left:0;width:1px;height:64px;border-left:1px solid var(--deco-line);
}
.deco-corner-br{
  right:16px;
  bottom:16px;
}
.deco-corner-br:before{
  right:0;bottom:0;width:64px;height:1px;border-bottom:1px solid var(--deco-line);
}
.deco-corner-br:after{
  right:0;bottom:0;width:1px;height:64px;border-right:1px solid var(--deco-line);
}

/* Motif en marches, très Art déco */
.deco-step{
  display:inline-flex;
  align-items:flex-end;
  gap:5px;
  margin:0 0 22px;
}
.deco-step span{
  display:block;
  width:18px;
  background:linear-gradient(180deg,var(--terracotta),var(--gold));
  border-radius:2px 2px 0 0;
}
.deco-step span:nth-child(1){height:14px}
.deco-step span:nth-child(2){height:26px}
.deco-step span:nth-child(3){height:38px}

/* Sunburst dans le bloc contact */
.deco-sunburst{
  position:absolute;
  right:22px;
  top:24px;
  width:118px;
  height:118px;
  opacity:.28;
  pointer-events:none;
}
.deco-sunburst:before{
  content:"";
  position:absolute;
  left:50%;top:50%;
  transform:translate(-50%,-50%);
  width:22px;height:22px;border-radius:50%;
  border:1px solid var(--gold);
  background:rgba(182,139,87,.08);
}
.deco-sunburst span{
  position:absolute;
  left:50%;
  top:50%;
  width:1px;
  height:54px;
  transform-origin:top center;
  background:linear-gradient(to bottom,var(--gold),rgba(182,139,87,0));
}
.deco-sunburst span:nth-child(1){transform:rotate(0deg)}
.deco-sunburst span:nth-child(2){transform:rotate(30deg)}
.deco-sunburst span:nth-child(3){transform:rotate(60deg)}
.deco-sunburst span:nth-child(4){transform:rotate(90deg)}
.deco-sunburst span:nth-child(5){transform:rotate(120deg)}
.deco-sunburst span:nth-child(6){transform:rotate(150deg)}

/* Motif vertical dans les cartes services */
.service-item:before{
  content:"";
  position:absolute;
  left:49px;
  top:14px;
  bottom:14px;
  width:1px;
  background:linear-gradient(
    to bottom,
    rgba(184,109,75,0),
    rgba(184,109,75,.32),
    rgba(182,139,87,.46),
    rgba(184,109,75,0)
  );
}

/* Cercles décalés / médaillon sur le hero */
.hero-visual:before{
  content:"";
  position:absolute;
  right:-28px;
  top:78px;
  width:270px;
  height:270px;
  border-radius:50%;
  border:1px solid rgba(184,109,75,.16);
  box-shadow:
    0 0 0 18px rgba(182,139,87,.05),
    0 0 0 38px rgba(116,120,91,.04);
  z-index:0;
}
.hero-visual:after{
  content:"";
  position:absolute;
  left:2px;
  bottom:22px;
  width:120px;
  height:120px;
  border-radius:50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(184,109,75,.14) 0 18%, transparent 19% 100%),
    conic-gradient(
      from 0deg,
      rgba(182,139,87,.25),
      transparent 8deg 18deg,
      rgba(184,109,75,.18) 20deg 28deg,
      transparent 30deg 44deg
    );
  opacity:.65;
  z-index:0;
}

/* Lignes décoratives sur les sections */
.services-section,
.expertise-section,
.contact-section{
  position:relative;
  overflow:hidden;
}
.services-section:after{
  content:"";
  position:absolute;
  right:-70px;
  top:90px;
  width:190px;
  height:380px;
  border-left:1px solid rgba(184,109,75,.13);
  border-radius:100% 0 0 100%;
  transform:rotate(8deg);
  pointer-events:none;
}
.expertise-section:after{
  content:"";
  position:absolute;
  left:-120px;
  bottom:-80px;
  width:340px;
  height:340px;
  border-radius:50%;
  border:1px solid rgba(116,120,91,.14);
  box-shadow:
    0 0 0 22px rgba(184,109,75,.035),
    0 0 0 44px rgba(182,139,87,.03);
  pointer-events:none;
}

/* Une ligne en trois niveaux dans le footer */
.deco-footer-line{
  position:absolute;
  left:0;
  right:0;
  top:-30px;
  height:28px;
  display:flex;
  justify-content:center;
  align-items:flex-end;
  gap:0;
  pointer-events:none;
}
.deco-footer-line span{
  display:block;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(232,208,170,.45),transparent);
}
.deco-footer-line span:nth-child(1){width:28%}
.deco-footer-line span:nth-child(2){width:10%;transform:translateY(-7px)}
.deco-footer-line span:nth-child(3){width:28%}

/* Accent typographique plus affirmé */
.hero h1,
.section h2,
.footer-brand{
  text-wrap:balance;
}
.hero h1::first-letter{
  color:var(--terracotta);
}
.service-text h3{
  position:relative;
  display:inline-block;
}
.service-text h3:after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:34px;
  height:2px;
  background:linear-gradient(90deg,var(--terracotta),var(--gold));
}

/* Plus de contraste matière / luxe */
.stone-panel,
.expertise-art,
.contact-card{
  border:1px solid rgba(109,88,71,.18);
}
.stone-panel{
  box-shadow:
    0 34px 80px rgba(22,17,13,.15),
    inset 0 1px 0 rgba(255,255,255,.72);
}
.expertise-art{
  box-shadow:
    0 30px 70px rgba(22,17,13,.12),
    inset 0 1px 0 rgba(255,255,255,.42);
}
.contact-card{
  box-shadow:
    0 30px 78px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.62);
}

/* Finitions */
.panel-top:after{
  content:"";
  display:block;
  width:38px;
  height:1px;
  margin-left:auto;
  background:linear-gradient(90deg,var(--terracotta),var(--gold));
}
.hero-meta>div{
  position:relative;
}
.hero-meta>div:before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:34px;
  height:2px;
  background:linear-gradient(90deg,var(--terracotta),var(--gold));
}
.facts-grid div{
  position:relative;
}
.facts-grid div:before{
  content:"";
  position:absolute;
  left:0;top:-1px;
  width:28px;height:2px;
  background:linear-gradient(90deg,var(--olive),var(--gold));
}

@media(max-width:980px){
  .deco-arch-hero{left:-100px}
  .deco-fan-hero{right:-30px}
}
@media(max-width:680px){
  .deco-arch-hero,
  .deco-fan-hero,
  .deco-fan-band,
  .deco-sunburst,
  .hero-visual:after,
  .service-item:before,
  .services-section:after,
  .expertise-section:after{
    display:none;
  }
  .deco-step{margin-bottom:16px}
  .deco-step span:nth-child(1){height:10px}
  .deco-step span:nth-child(2){height:18px}
  .deco-step span:nth-child(3){height:26px}
}


/* =============================
   INSPIRATION VISUELLE GRAPHIQUE
   ============================= */

.hero,
.signature-band,
.expertise-section,
.site-footer{
  position:relative;
  overflow:hidden;
}

.graphic-columns{
  position:absolute;
  pointer-events:none;
  opacity:.75;
}

.graphic-columns-hero{
  top:18px;
  right:-60px;
  width:420px;
  height:560px;
  background:
    linear-gradient(90deg,
      transparent 0 30px,
      var(--gold) 30px 31px,
      transparent 31px 78px,
      var(--gold) 78px 79px,
      transparent 79px 126px,
      var(--gold) 126px 127px,
      transparent 127px 174px,
      var(--gold) 174px 175px,
      transparent 175px 222px,
      var(--gold) 222px 223px,
      transparent 223px 270px,
      var(--gold) 270px 271px,
      transparent 271px 318px,
      var(--gold) 318px 319px,
      transparent 319px 100%
    );
  mask:
    radial-gradient(84px 84px at 42px 100px, #0000 98%, #000 100%),
    radial-gradient(84px 84px at 42px 336px, #0000 98%, #000 100%),
    radial-gradient(84px 84px at 138px 250px, #0000 98%, #000 100%),
    radial-gradient(84px 84px at 234px 130px, #0000 98%, #000 100%),
    radial-gradient(84px 84px at 330px 300px, #0000 98%, #000 100%),
    linear-gradient(#000,#000);
  -webkit-mask:
    radial-gradient(84px 84px at 42px 100px, #0000 98%, #000 100%),
    radial-gradient(84px 84px at 42px 336px, #0000 98%, #000 100%),
    radial-gradient(84px 84px at 138px 250px, #0000 98%, #000 100%),
    radial-gradient(84px 84px at 234px 130px, #0000 98%, #000 100%),
    radial-gradient(84px 84px at 330px 300px, #0000 98%, #000 100%),
    linear-gradient(#000,#000);
}

.graphic-columns-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 42px 100px, var(--dusty-blue) 0 70px, transparent 71px),
    radial-gradient(circle at 138px 250px, var(--lavender) 0 70px, transparent 71px),
    radial-gradient(circle at 330px 300px, var(--dusty-blue) 0 70px, transparent 71px);
  opacity:.42;
}

.graphic-columns-band{
  left:-20px;
  top:16px;
  width:280px;
  height:220px;
  opacity:.24;
  background:
    radial-gradient(120px 120px at 110px 140px, transparent 58%, rgba(255,255,255,.14) 59% 60%, transparent 61%),
    radial-gradient(90px 90px at 110px 140px, transparent 58%, rgba(255,255,255,.16) 59% 60%, transparent 61%),
    linear-gradient(90deg, rgba(255,255,255,.24) 0 1px, transparent 1px 10px);
}

.graphic-columns-expertise{
  left:auto;
  right:-120px;
  top:80px;
  width:360px;
  height:360px;
  opacity:.16;
  border-radius:50%;
  background:
    radial-gradient(circle at center, transparent 0 92px, rgba(194,173,107,.55) 92px 93px, transparent 93px),
    radial-gradient(circle at center, transparent 0 132px, rgba(110,100,154,.45) 132px 133px, transparent 133px),
    radial-gradient(circle at center, transparent 0 170px, rgba(111,139,152,.4) 170px 171px, transparent 171px);
}

.mini-arches{
  position:absolute;
  top:18px;
  right:18px;
  width:120px;
  height:78px;
  display:flex;
  justify-content:flex-end;
  gap:10px;
  opacity:.42;
  pointer-events:none;
}
.mini-arches span{
  width:18px;
  height:78px;
  border:1px solid rgba(194,173,107,.42);
  border-bottom:0;
  border-radius:18px 18px 0 0;
  background:linear-gradient(180deg, rgba(111,139,152,.18), rgba(110,100,154,.04));
}
.mini-arches span:nth-child(2){height:58px}
.mini-arches span:nth-child(3){height:42px}
.mini-arches span:nth-child(4){height:28px}

.footer-pattern{
  position:absolute;
  inset:auto 0 -20px auto;
  width:360px;
  height:220px;
  opacity:.16;
  background:
    radial-gradient(120px 120px at 120px 220px, transparent 58%, rgba(234,217,162,.65) 59% 60%, transparent 61%),
    radial-gradient(84px 84px at 120px 220px, transparent 58%, rgba(141,165,176,.55) 59% 60%, transparent 61%),
    linear-gradient(90deg, rgba(234,217,162,.36) 0 1px, transparent 1px 10px);
  pointer-events:none;
}

.hero::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:180px;
  height:100%;
  background:
    linear-gradient(90deg,
      rgba(194,173,107,.58) 0 1px,
      transparent 1px 9px
    );
  opacity:.24;
  pointer-events:none;
}

.stone-panel,
.expertise-art,
.contact-card{
  border-color:rgba(194,173,107,.28);
}

.stone-panel:before,
.expertise-art:before,
.contact-card:after{
  border-color:rgba(194,173,107,.18);
}

.deco-step span{
  background:linear-gradient(180deg,var(--lavender),var(--gold));
}

.service-text h3:after,
.hero-meta>div:before,
.facts-grid div:before,
.panel-top:after{
  background:linear-gradient(90deg,var(--lavender),var(--gold));
}

.hero h1::first-letter{
  color:var(--lavender);
}

.signature-strokes span:nth-child(1){
  background:linear-gradient(90deg,var(--navy),var(--dusty-blue));
}
.signature-strokes span:nth-child(2){
  background:linear-gradient(90deg,var(--gold-soft),var(--gold));
}
.signature-strokes span:nth-child(3){
  background:linear-gradient(90deg,var(--lavender),var(--dusty-blue));
}
.premium-mark span:nth-child(1){
  background:linear-gradient(90deg,var(--gold-soft),var(--gold));
}
.premium-mark span:nth-child(2){
  background:linear-gradient(90deg,var(--dusty-blue),var(--navy));
}
.premium-mark span:nth-child(3){
  background:linear-gradient(90deg,var(--lavender),var(--dusty-blue-soft));
}

.brand-mark,
.stone-circle{
  background:linear-gradient(145deg,var(--navy) 0%, var(--lavender) 58%, var(--gold) 100%);
}

.panel-top,
.hero-meta span,
.section-number,
.section-label,
.contact-label,
.facts-grid span,
.contact-infos span,
.footer-grid h3{
  color:var(--gold);
}

@media(max-width:980px){
  .graphic-columns-hero{
    width:280px;
    right:-80px;
    opacity:.42;
  }
}

@media(max-width:680px){
  .graphic-columns-hero,
  .graphic-columns-band,
  .graphic-columns-expertise,
  .footer-pattern,
  .mini-arches{
    display:none;
  }
}
