:root{
  --bg:#0b0806;
  --bg2:#18110c;
  --ink:#f7efe2;
  --muted:#d8c6a8;
  --paper:#fbf4e7;
  --card:#1a1410;
  --copper:#8f5e34;
  --gold:#d5b36a;
  --sage:#9aa084;
  --line:rgba(213,179,106,.20);
  --dark:#050505;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Georgia,'Times New Roman',serif;

  background:
    radial-gradient(
      circle at top right,
      rgba(181,120,61,.16),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      #17120f 0%,
      #0d0b09 55%,
      #050505 100%
    );

  color:var(--ink);
  line-height:1.62;
}

a{
  color:inherit;
  text-decoration:none;
}

.wrap{
  max-width:1120px;
  margin:auto;
  padding:0 22px;
}

header{
  position:sticky;
  top:0;
  z-index:20;

  background:rgba(5,5,5,.92);

  border-bottom:1px solid var(--line);
  backdrop-filter:blur(10px);
}

.top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:16px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:13px;
}

.brand img{
  width:56px;
  height:56px;
  border-radius:50%;
  object-fit:cover;
  border:1px solid var(--gold);
}

.brand strong{
  display:block;
  letter-spacing:.05em;
  text-transform:uppercase;
}

.brand span{
  display:block;
  color:var(--muted);
  font-size:14px;
}

.nav{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  justify-content:flex-end;
  color:var(--muted);
  font-size:15px;
}

.nav a:hover{
  color:var(--gold);
}

.hero{
  padding:70px 0 56px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:42px;
  align-items:center;
}

.eyebrow{
  color:var(--gold);
  letter-spacing:.14em;
  text-transform:uppercase;
  font-weight:700;
  font-size:13px;
  margin-bottom:14px;
}

h1{
  font-size:52px;
  line-height:1.05;
  margin:0 0 20px;
  letter-spacing:-.025em;
}

.lead{
  font-size:22px;
  color:var(--muted);
  margin:0 0 24px;
}

.hero p:not(.lead){
  font-size:18px;
  color:#eadcc6;
}

.buttons{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:26px;
}

.btn{
  display:inline-block;
  border-radius:999px;
  padding:13px 22px;
  font-weight:700;
  border:1px solid var(--gold);

  background:linear-gradient(
    135deg,
    var(--copper),
    var(--gold)
  );

  color:#120f0d;

  box-shadow:0 10px 24px rgba(0,0,0,.24);
}

.btn.alt{
  background:transparent;
  color:var(--ink);
}

.seal-card{
  border:1px solid var(--line);

  background:linear-gradient(
    180deg,
    rgba(255,255,255,.05),
    rgba(255,255,255,.015)
  );

  border-radius:32px;
  padding:22px;

  box-shadow:0 24px 80px rgba(0,0,0,.32);
}

.seal-card img{
  width:100%;
  border-radius:24px;
  display:block;
}

.mini{
  margin-top:14px;
  color:var(--muted);
  text-align:center;
  font-style:italic;
}

section{
  padding:48px 0;
}

.panel{
  background:rgba(22,18,14,.82);

  border:1px solid var(--line);

  border-radius:28px;

  padding:34px;

  box-shadow:0 20px 56px rgba(0,0,0,.22);
}

h2{
  font-size:34px;
  line-height:1.15;
  margin:0 0 18px;
  color:var(--ink);
}

h3{
  font-size:23px;
  margin:0 0 12px;
  color:#fff2db;
}

.note{
  font-size:19px;
  color:var(--muted);
}

.grid3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.card{
  background:rgba(255,255,255,.03);

  border:1px solid var(--line);

  border-radius:22px;

  padding:24px;

  min-height:100%;
}

.card .num{
  width:36px;
  height:36px;
  border-radius:50%;

  display:inline-grid;
  place-items:center;

  background:var(--gold);

  color:#17120f;

  font-weight:700;

  margin-bottom:12px;
}

ul{
  margin:12px 0 0;
  padding-left:22px;
}

li{
  margin:9px 0;
}

.services{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.callout{
  border-left:4px solid var(--gold);
  padding-left:20px;
  color:#eedfc5;
  font-size:19px;
}

.quote-block{
  text-align:center;
}

.quote-logo{
  width:110px;
  height:110px;
  border-radius:50%;
  object-fit:cover;
  border:1px solid var(--gold);
  margin:0 auto 18px;
  display:block;
}

.quote{
  font-size:30px;
  line-height:1.25;
  font-style:italic;
  margin:0;
  color:#fff2db;
}

.contacts{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:20px;
}

.contact-box{
  flex:1 1 260px;

  background:var(--paper);

  color:#221a15;

  border-radius:20px;

  padding:22px;
}

.contact-box small{
  display:block;
  color:#7c5d34;
  margin-bottom:6px;
  text-transform:uppercase;
  letter-spacing:.11em;
  font-size:12px;
  font-weight:700;
}

.small{
  color:var(--muted);
  font-size:14px;
}

.page-title{
  padding:56px 0 20px;
}

.breadcrumb{
  color:var(--muted);
  font-size:14px;
  margin-bottom:14px;
}

.content{
  max-width:850px;
}

.content p{
  font-size:18px;
  color:#eadcc6;
}

footer{
  padding:34px 0 48px;
  color:var(--muted);
  font-size:14px;
  text-align:center;
  border-top:1px solid var(--line);

  background:#050505;
}

@media(max-width:850px){

  .hero-grid,
  .services,
  .grid3{
    grid-template-columns:1fr;
  }

  h1{
    font-size:38px;
  }

  .top{
    align-items:flex-start;
    flex-direction:column;
  }

  .nav{
    justify-content:flex-start;
  }

  .hero{
    padding-top:42px;
  }

  .brand img{
    width:48px;
    height:48px;
  }
}
/* BOTTONE LOGO */

.logo-meaning{
  margin-top:14px;
  text-align:left;
}

.logo-meaning summary{
  display:inline-block;
  cursor:pointer;

  padding:10px 16px;

  border:1px solid rgba(213,179,106,.35);

  border-radius:999px;

  background:rgba(255,255,255,.05);

  color:var(--gold2);

  font-size:14px;
  font-weight:700;

  transition:.25s ease;
}

.logo-meaning summary:hover{
  background:rgba(213,179,106,.12);
  border-color:rgba(213,179,106,.55);
}

.logo-meaning-box{
  margin-top:16px;

  border:1px solid rgba(213,179,106,.18);

  border-radius:18px;

  padding:18px;

  background:rgba(0,0,0,.22);
}

.logo-meaning-box h3{
  margin-top:0;
}

.logo-meaning-box p{
  font-size:15px;
  line-height:1.6;
}

.logo-meaning-box .finale{
  color:var(--gold2);
  font-style:italic;
  font-weight:700;
}
/* BOTTONE LOGO */

.logo-meaning{
  margin-top:14px;
  text-align:left;
}

.logo-meaning summary{
  display:inline-block;
  cursor:pointer;

  padding:10px 16px;

  border:1px solid rgba(213,179,106,.35);

  border-radius:999px;

  background:rgba(255,255,255,.05);

  color:var(--gold2);

  font-size:14px;
  font-weight:700;

  transition:.25s ease;
}

.logo-meaning summary:hover{
  background:rgba(213,179,106,.12);
  border-color:rgba(213,179,106,.55);
}

.logo-meaning-box{
  margin-top:16px;

  border:1px solid rgba(213,179,106,.18);

  border-radius:18px;

  padding:18px;

  background:rgba(0,0,0,.22);
}

.logo-meaning-box h3{
  margin-top:0;
}

.logo-meaning-box p{
  font-size:15px;
  line-height:1.6;
}

.logo-meaning-box .finale{
  color:var(--gold2);
  font-style:italic;
  font-weight:700;
}