/* =========================================================================
   Novelli Arredamenti — visual system
   White canvas · quiet luxury · a single red dot as the brand accent
   ========================================================================= */

:root {
  --red:        #c8102e;
  --red-deep:   #9e0b22;
  --ink:        #1a1a1a;
  --ink-soft:   #4a4a4a;
  --muted:      #8a8a8a;
  --line:       #ececec;
  --line-soft:  #f4f4f4;
  --bg:         #ffffff;
  --bg-alt:     #fafafa;
  --bg-warm:    #f7f5f2;
  --shadow:     0 18px 50px -28px rgba(0,0,0,.28);
  --shadow-sm:  0 8px 24px -18px rgba(0,0,0,.35);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --wrap: 1240px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.08; margin: 0; letter-spacing: .2px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

/* --- brand logo "n." --------------------------------------------------- */
.logo {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
}
.logo .dot { color: var(--red); }
.logo--xl { font-size: 3.4rem; }
.logo--lg { font-size: 2.1rem; }

/* =======================================================================
   Top bar + navigation
   ======================================================================= */
.topbar {
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg);
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; height: 38px; gap: 20px; }
.topbar a:hover { color: var(--red); }
.topbar .tb-right { display: flex; gap: 22px; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 82px; gap: 26px; }
.brand-link { display: inline-flex; align-items: baseline; }
.brand-link .logo { font-size: 2rem; }
.brand-sub {
  font-family: var(--sans); font-size: .82rem; letter-spacing: .04em;
  text-transform: lowercase; color: var(--ink-soft); margin-left: 14px; align-self: center;
  padding-left: 14px; border-left: 1px solid var(--line); font-weight: 500; white-space: nowrap;
}

.nav { display: flex; gap: 30px; align-items: center; }
.nav a {
  font-size: .8rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-soft); position: relative; padding: 6px 0; font-weight: 500;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--red); transition: width .3s var(--ease);
}
.nav a:hover, .nav a.active { color: var(--ink); }
.nav a:hover::after, .nav a.active::after { width: 100%; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--ink); margin: 5px 0; transition: .3s; }

/* =======================================================================
   Buttons + chips
   ======================================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  padding: 14px 30px; border: 1px solid var(--ink); color: var(--ink); background: transparent;
  cursor: pointer; transition: all .3s var(--ease);
}
.btn:hover { background: var(--ink); color: #fff; }
.btn--red { border-color: var(--red); background: var(--red); color: #fff; }
.btn--red:hover { background: var(--red-deep); border-color: var(--red-deep); }
.btn--ghost { border-color: var(--line); color: var(--ink-soft); }
.btn--ghost:hover { border-color: var(--ink); background: transparent; color: var(--ink); }
.btn--sm { padding: 10px 20px; font-size: .7rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; color: var(--ink);
}
.link-arrow .ar { transition: transform .3s var(--ease); color: var(--red); }
.link-arrow:hover .ar { transform: translateX(6px); }

.chip {
  display: inline-block; font-size: .64rem; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 700; padding: 5px 11px; border-radius: 100px; line-height: 1;
  background: var(--chip, var(--red)); color: #fff; white-space: nowrap;
}
.chip-link { display: inline-block; }
.chip-row { display: flex; flex-wrap: wrap; gap: 7px; }

.eyebrow {
  font-family: var(--sans); font-size: .72rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--red); font-weight: 700; display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--red); display: inline-block; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ""; width: 26px; height: 1px; background: var(--red); display: inline-block; }

/* =======================================================================
   Section scaffolding
   ======================================================================= */
.section { padding: 88px 0; }
.section--tight { padding: 60px 0; }
.section--alt { background: var(--bg-alt); }
.section--warm { background: var(--bg-warm); }
.section-head { margin-bottom: 46px; }
.section-head.center { text-align: center; }
.section-head h2 { font-size: clamp(2.1rem, 4vw, 3.1rem); margin-top: 14px; }
.section-head p { color: var(--ink-soft); max-width: 560px; margin: 14px 0 0; }
.section-head.center p { margin-left: auto; margin-right: auto; }
.section-head .row { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }

/* =======================================================================
   Hero
   ======================================================================= */
.hero { position: relative; padding: 0; background: var(--bg); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; min-height: 620px; align-items: stretch; }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 60px 70px 60px 0; }
.hero-copy h1 { font-size: clamp(2.8rem, 5.4vw, 4.9rem); margin: 20px 0 0; }
.hero-copy h1 .dot { color: var(--red); }
.hero-copy p { font-size: 1.12rem; color: var(--ink-soft); max-width: 480px; margin: 24px 0 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual { position: relative; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual::after {
  content: "n."; position: absolute; left: -46px; bottom: -30px; font-family: var(--serif);
  font-size: 12rem; color: #fff; line-height: 1; text-shadow: var(--shadow); pointer-events: none;
}
.hero-visual .dotmark { display: none; }

/* =======================================================================
   Cards (editorial)
   ======================================================================= */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card {
  display: flex; flex-direction: column; background: var(--bg);
  border: 1px solid var(--line-soft); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card .thumb { position: relative; overflow: hidden; aspect-ratio: 4/3; background: var(--bg-warm); }
.card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.card:hover .thumb img { transform: scale(1.05); }
.card .thumb .chip-row { position: absolute; top: 14px; left: 14px; }
.card .body { padding: 24px 24px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.card .meta { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.card h3 { font-size: 1.55rem; }
.card p { color: var(--ink-soft); font-size: .95rem; margin: 0; }
.card .card-foot { margin-top: auto; padding-top: 6px; }

.card--wide { grid-column: span 2; }
.card--feature { display: grid; grid-template-columns: 1.1fr 1fr; align-items: stretch; }
.card--feature .thumb { aspect-ratio: auto; height: 100%; min-height: 340px; }
.card--feature .body { justify-content: center; padding: 40px; }
.card--feature h3 { font-size: 2.2rem; }

/* event date badge */
.date-badge {
  position: absolute; top: 14px; right: 14px; background: #fff; color: var(--ink);
  text-align: center; padding: 8px 12px; box-shadow: var(--shadow-sm); line-height: 1;
}
.date-badge .d { font-family: var(--serif); font-size: 1.6rem; }
.date-badge .m { font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; color: var(--red); margin-top: 3px; }

/* =======================================================================
   Brand wall (Companies)
   ======================================================================= */
.filterbar { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.filter-btn {
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
  padding: 9px 18px; border: 1px solid var(--line); background: #fff; color: var(--ink-soft);
  cursor: pointer; border-radius: 100px; transition: all .25s var(--ease); display: inline-flex; align-items: center; gap: 8px;
}
.filter-btn .dotc { width: 9px; height: 9px; border-radius: 50%; background: var(--dotc, var(--red)); }
.filter-btn:hover { border-color: var(--ink); color: var(--ink); }
.filter-btn.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.filter-btn .n { opacity: .55; font-variant-numeric: tabular-nums; }

.brand-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
}
.brand-cell {
  background: #fff; aspect-ratio: 3/2; display: flex; flex-direction: column;
  align-items: center; justify-content: center; padding: 26px 22px; position: relative;
  transition: background .3s var(--ease); overflow: hidden;
}
.brand-cell:hover { background: var(--bg-alt); }
.brand-cell img { max-height: 54px; max-width: 78%; object-fit: contain; filter: grayscale(1); opacity: .72; transition: all .4s var(--ease); }
.brand-cell:hover img { filter: grayscale(0); opacity: 1; }
.brand-cell .brand-over {
  position: absolute; inset: 0; background: rgba(26,26,26,.94); color: #fff;
  opacity: 0; transition: opacity .3s var(--ease); padding: 20px; display: flex;
  flex-direction: column; justify-content: center; align-items: center; text-align: center; gap: 8px;
}
.brand-cell:hover .brand-over { opacity: 1; }
.brand-over .bn { font-family: var(--serif); font-size: 1.3rem; }
.brand-over p { font-size: .78rem; color: #cfcfcf; margin: 0; line-height: 1.5; }
.brand-over .bcats { display: flex; flex-wrap: wrap; gap: 5px; justify-content: center; margin-top: 4px; }
.brand-over .bcats .chip { font-size: .56rem; padding: 3px 8px; }
.brand-over .visit { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: #fff; border-bottom: 1px solid var(--red); padding-bottom: 2px; margin-top: 6px; }
.brand-cell.is-hidden { display: none; }
.brand-empty { grid-column: 1/-1; text-align: center; padding: 60px; color: var(--muted); }

/* =======================================================================
   Company profile / services
   ======================================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media img { width: 100%; box-shadow: var(--shadow); }
.prose { font-size: 1.04rem; color: var(--ink-soft); }
.prose h2, .prose h3 { color: var(--ink); margin: 1.4em 0 .5em; }
.prose h3 { font-size: 1.6rem; }
.prose p { margin: 0 0 1.1em; }
.prose ul { padding-left: 1.1em; }
.prose li { margin-bottom: .5em; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service {
  padding: 38px 32px; border: 1px solid var(--line); background: #fff;
  transition: all .35s var(--ease);
}
.service:hover { border-color: var(--ink); transform: translateY(-4px); box-shadow: var(--shadow); }
.service .num { font-family: var(--serif); font-size: 1.1rem; color: var(--red); }
.service h3 { font-size: 1.4rem; margin: 14px 0 10px; }
.service p { color: var(--ink-soft); font-size: .95rem; margin: 0; }

.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat .num { font-family: var(--serif); font-size: 3rem; color: var(--ink); line-height: 1; }
.stat .num .dot { color: var(--red); }
.stat .lbl { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: 10px; }

/* =======================================================================
   Wishlist
   ======================================================================= */
.wish-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.wish-card {
  border: 1px solid var(--line); background: #fff; overflow: hidden; display: flex; flex-direction: column;
  transition: all .4s var(--ease);
}
.wish-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.wish-card .thumb { aspect-ratio: 16/10; background: var(--bg-warm); position: relative; }
.wish-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.wish-card .thumb .type { position: absolute; top: 14px; left: 14px; }
.wish-card .body { padding: 28px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; flex: 1; }
.wish-card .names { font-family: var(--serif); font-size: 1.8rem; }
.wish-card .when { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.wish-card .body p { color: var(--ink-soft); font-size: .92rem; margin: 4px 0 0; }
.wish-card .card-foot { margin-top: auto; padding-top: 16px; }

/* wishlist detail items */
.wish-item {
  display: grid; grid-template-columns: 150px 1fr auto; gap: 26px; align-items: center;
  padding: 26px 0; border-bottom: 1px solid var(--line);
}
.wish-item .wi-media { aspect-ratio: 1; background: var(--bg-warm); overflow: hidden; }
.wish-item .wi-media img { width: 100%; height: 100%; object-fit: cover; }
.wish-item .wi-brand { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--red); }
.wish-item h3 { font-size: 1.4rem; margin: 6px 0; }
.wish-item p { color: var(--ink-soft); font-size: .93rem; margin: 0; }
.wish-item .wi-side { text-align: right; }
.wish-item .price { font-family: var(--serif); font-size: 1.5rem; }
.wish-item.reserved { opacity: .55; }
.wish-item .reserved-tag { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

.bank-box {
  background: var(--bg-warm); border: 1px solid var(--line); padding: 22px 24px; margin-top: 14px;
  font-size: .9rem;
}
.bank-box .bank-title { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--red); font-weight: 700; margin-bottom: 10px; }
.bank-box dl { display: grid; grid-template-columns: 130px 1fr; gap: 6px 14px; margin: 0; }
.bank-box dt { color: var(--muted); font-size: .82rem; }
.bank-box dd { margin: 0; font-weight: 600; }
.bank-box .iban { font-family: var(--serif); letter-spacing: 1px; }

/* =======================================================================
   Contacts
   ======================================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 0; border: 1px solid var(--line); }
.contact-info { padding: 54px 50px; }
.contact-block { margin-bottom: 32px; }
.contact-block h3 { font-size: 1.3rem; margin-bottom: 10px; }
.contact-block .ci-line { display: flex; gap: 12px; color: var(--ink-soft); margin: 5px 0; font-size: .96rem; }
.contact-block .ci-line .k { color: var(--muted); min-width: 74px; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; padding-top: 2px; }
.contact-block a:hover { color: var(--red); }
#map { width: 100%; height: 100%; min-height: 520px; background: var(--bg-warm); }

.hours-table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.hours-table td { padding: 5px 0; border-bottom: 1px solid var(--line-soft); }
.hours-table td:last-child { text-align: right; color: var(--ink-soft); }

/* =======================================================================
   Newsletter
   ======================================================================= */
.newsletter { background: var(--ink); color: #fff; }
.newsletter .wrap { padding-top: 78px; padding-bottom: 78px; text-align: center; }
.newsletter .logo { color: #fff; font-size: 3rem; margin-bottom: 10px; }
.newsletter h2 { font-size: clamp(2rem, 4vw, 3rem); color: #fff; }
.newsletter p { color: #bdbdbd; max-width: 520px; margin: 16px auto 32px; }
.nl-form { display: flex; gap: 0; max-width: 520px; margin: 0 auto; }
.nl-form input {
  flex: 1; background: transparent; border: 1px solid #4a4a4a; border-right: 0;
  color: #fff; padding: 16px 20px; font-family: var(--sans); font-size: .95rem;
}
.nl-form input::placeholder { color: #8a8a8a; }
.nl-form input:focus { outline: none; border-color: #fff; }
.nl-form button { border: 0; background: var(--red); color: #fff; padding: 0 30px; cursor: pointer;
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; transition: background .3s; }
.nl-form button:hover { background: var(--red-deep); }
.nl-note { font-size: .78rem; color: #8a8a8a; margin-top: 14px; }
.flash { padding: 14px 20px; margin: 0 auto 22px; max-width: 520px; font-size: .9rem; border-radius: 3px; }
.flash.ok { background: rgba(255,255,255,.12); color: #fff; }
.flash.err { background: rgba(200,16,46,.2); color: #ffd7dd; }

/* =======================================================================
   Footer
   ======================================================================= */
.site-footer { background: #111; color: #b8b8b8; padding: 72px 0 0; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 54px; border-bottom: 1px solid #262626; }
.site-footer .logo { color: #fff; font-size: 2.6rem; }
.footer-brand { display: flex; align-items: baseline; gap: 12px; }
.footer-name { font-size: 1rem; letter-spacing: .04em; color: #e6e6e6; font-weight: 500; }
.footer-about p { margin: 18px 0 0; color: #9a9a9a; max-width: 300px; line-height: 1.7; }
.footer-col h4 { font-family: var(--sans); font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 11px; }
.footer-col a:hover { color: #fff; }
.footer-col .muted { color: #7d7d7d; }
.footer-social { display: flex; gap: 14px; margin-top: 18px; }
.footer-social a { width: 38px; height: 38px; border: 1px solid #333; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; transition: all .3s; }
.footer-social a:hover { border-color: var(--red); color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 26px 0; color: #6f6f6f; font-size: .82rem; flex-wrap: wrap; gap: 10px; }
.footer-bottom a:hover { color: #fff; }

/* =======================================================================
   Page hero (interior pages)
   ======================================================================= */
.page-hero { padding: 66px 0 10px; text-align: center; }
.page-hero .breadcrumb { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.page-hero .breadcrumb a:hover { color: var(--red); }
.page-hero h1 { font-size: clamp(2.6rem, 5vw, 4rem); }
.page-hero p { color: var(--ink-soft); max-width: 620px; margin: 18px auto 0; }

/* article detail */
.article-head { max-width: 820px; margin: 0 auto; text-align: center; padding: 56px 0 34px; }
.article-head h1 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); margin: 18px 0; }
.article-head .meta { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.article-cover { max-width: 1000px; margin: 0 auto 44px; }
.article-cover img { width: 100%; box-shadow: var(--shadow); }
.article-body { max-width: 760px; margin: 0 auto; }
.event-facts { display: flex; gap: 34px; justify-content: center; flex-wrap: wrap; padding: 26px; background: var(--bg-warm); margin: 0 auto 40px; max-width: 760px; }
.event-facts .ef { text-align: center; }
.event-facts .ef .k { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--red); }
.event-facts .ef .v { font-family: var(--serif); font-size: 1.3rem; margin-top: 4px; }

.empty-state { text-align: center; padding: 80px 20px; color: var(--muted); }

/* =======================================================================
   Responsive
   ======================================================================= */
@media (max-width: 1080px) {
  .brand-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 54px 0 40px; }
  .hero-visual { min-height: 380px; }
  .card-grid, .card-grid--2, .wish-grid, .services-grid { grid-template-columns: 1fr 1fr; }
  .card--feature, .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .card--wide { grid-column: span 1; }
  .stat-row { grid-template-columns: repeat(2,1fr); gap: 40px 20px; }
}
@media (max-width: 720px) {
  .nav { position: fixed; inset: 82px 0 auto 0; flex-direction: column; background: #fff;
    border-bottom: 1px solid var(--line); padding: 22px 28px; gap: 4px; transform: translateY(-140%);
    transition: transform .4s var(--ease); box-shadow: var(--shadow); }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--line-soft); }
  .nav-toggle { display: block; }
  .topbar { display: none; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid, .card-grid--2, .wish-grid, .services-grid { grid-template-columns: 1fr; }
  .wish-item { grid-template-columns: 90px 1fr; }
  .wish-item .wi-side { grid-column: 1/-1; text-align: left; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-visual::after { font-size: 7rem; left: -20px; }
  .nl-form { flex-direction: column; gap: 10px; }
  .nl-form input { border-right: 1px solid #4a4a4a; }
  .nl-form button { padding: 15px; }
  .site-header .wrap { gap: 12px; }
  .brand-link .logo { font-size: 1.8rem; }
  .brand-sub { font-size: .76rem; margin-left: 10px; padding-left: 10px; }
}

@media (max-width: 400px) {
  .brand-sub { font-size: .7rem; margin-left: 8px; padding-left: 8px; }
  .brand-link .logo { font-size: 1.65rem; }
  .nav { inset: 74px 0 auto 0; }
  .site-header .wrap { height: 74px; }
}

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
