@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..700&family=Newsreader:ital,opsz,wght@0,6..72,300..500;1,6..72,300..500&family=Archivo:wght@400;500;600;700&display=swap');

:root {
  --bone: #EAE2CF;
  --bone-2: #DED6C1;
  --card: #F2ECE0;
  --ink: #1C1D18;
  --ink-2: #5B5956;
  --ink-3: #8B8986;
  --line: #D0C8B5;
  --line-2: #DFD7C4;
  --gold: #E7C832;
  --gold-2: #E7C832;
  --gold-soft: #FAF1C5;
  --brown: #9C7B4E;
  --brown-2: #B89A6E;
  --orange: #C27F2E;
  --orange-2: #D9A24A;
  --dark: #1C1D18;
  --display: "Playfair Display", Georgia, serif;
  --serif: "Newsreader", Georgia, serif;
  --ui: "Archivo", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity
}

.scale-root {
  background: var(--bone);
  color: var(--ink);
  font-family: var(--serif);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit
}

a {
  color: inherit;
  text-decoration: none
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top
}

.wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 3
}

/* faint Vesperde column guides */
.guides {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  display: flex;
  justify-content: center
}

.guides-in {
  width: 100%;
  max-width: 1320px;
  margin: 0 48px;
  background-image: repeating-linear-gradient(90deg, transparent, transparent calc(20% - .5px), var(--line) calc(20% - .5px), var(--line) 20%);
  opacity: .45
}

/* labels */
.plabel {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-2);
  letter-spacing: .01em
}

.pbtn {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--ink);
  padding: 9px 18px;
  background: transparent;
  transition: .4s cubic-bezier(.2, .7, .2, 1);
  white-space: nowrap
}

.pbtn:hover {
  background: var(--ink);
  color: var(--bone)
}

.pbtn.light {
  border-color: #fff;
  color: #fff
}

.pbtn.light:hover {
  background: #fff;
  color: var(--dark)
}

.eyebrow {
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  line-height: 1.5;
  display: inline-block;
  padding-top: 2px
}

/* circle-arrow pill (Vesperde) */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--gold);
  color: #15130d;
  font-family: var(--ui);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 13px 13px 13px 26px;
  border-radius: 40px;
  transition: .4s cubic-bezier(.2, .7, .2, 1)
}

.pill .c {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #15130d;
  color: var(--gold);
  display: grid;
  place-items: center;
  transition: .4s
}

.pill:hover {
  background: var(--ink);
  color: var(--bone)
}

.pill:hover .c {
  background: var(--gold-2);
  color: #15130d;
  transform: rotate(45deg)
}

/* ---------- header (Vesperde: hamburger / wordmark / socials) ---------- */
.head {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  color: var(--ink);
  transition: .5s cubic-bezier(.2, .7, .2, 1)
}

.head-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
  transition: height .5s
}

.head.shrunk {
  background: rgba(236, 231, 220, .82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  color: var(--ink)
}

.head.shrunk .head-in {
  height: 80px
}
.header-logo {
  height: 98px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  transition: height .5s
}
.head.shrunk .header-logo {
  height: 60px
}

.head.over-dark:not(.shrunk) {
  color: #fff
}

.menu-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600
}

.menu-btn .bars {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.menu-btn .bars i {
  width: 22px;
  height: 1.5px;
  background: currentColor;
  display: block;
  transition: .3s
}

.menu-btn:hover .bars i:first-child {
  width: 14px
}

.brand {
  font-family: var(--display);
  font-size: 27px;
  font-weight: 500;
  letter-spacing: .16em;
  cursor: pointer;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center
}

.brand .logo-svg {
  font-size: 30px
}

.foot-brand .logo-svg {
  font-size: 46px
}

.overlay-top .logo-svg {
  font-size: 30px
}

.logo-svg {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1;
  white-space: nowrap;
  display: inline-flex;
  align-items: baseline
}

.logo-svg .logo-a {
  height: .72em;
  width: .65em;
  margin: 0 .05em;
  align-self: flex-end;
  display: inline-block;
  overflow: visible
}

.brand .dot {
  color: var(--gold)
}

.socials {
  display: flex;
  gap: 18px;
  align-items: center
}

.socials a {
  opacity: .7;
  transition: .25s
}

.socials a:hover {
  opacity: 1;
  color: var(--gold)
}

/* full-screen menu overlay */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--dark);
  color: var(--bone);
  display: flex;
  flex-direction: column;
  padding: 48px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s
}

.overlay.open {
  opacity: 1;
  pointer-events: auto
}

.overlay-top {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.overlay-x {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase
}

.overlay-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px
}

.overlay-nav a {
  font-family: var(--display);
  font-size: clamp(40px, 6.5vw, 84px);
  font-weight: 500;
  line-height: 1.05;
  color: var(--bone);
  transition: .4s;
  display: flex;
  align-items: baseline;
  gap: 20px;
  opacity: 0;
  transform: translateY(20px)
}

.overlay.open .overlay-nav a {
  opacity: 1;
  transform: none
}

.overlay-nav a span {
  font-family: var(--ui);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--gold-2);
  opacity: 0;
  transition: opacity .3s
}

.overlay-nav a:hover {
  color: var(--gold-2);
  padding-left: 14px
}

.overlay-nav a:hover span {
  opacity: 1
}

.overlay-foot {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-3);
  font-size: 15px
}

/* ---------- hero ---------- */
.hero {
  padding: 160px 0 32px;
  position: relative;
  z-index: 3;
  scroll-snap-align: start
}

.hero h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(52px, 9vw, 138px);
  line-height: .92;
  letter-spacing: -.02em;
  margin-bottom: 34px
}

.hero h1 .it {
  font-style: italic;
  font-weight: 400
}
#rotate-word {
  color: var(--gold)
}

/* project-of-the-week banner (image + centered floating tag) under the title */
.hero-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 1600/650;
  max-height: 50vh;
  border-radius: 28px;
  overflow: hidden;
  cursor: pointer;
  border: none;
  background: linear-gradient(120deg, #cdbd9a, #b29a63 55%, #8c7340);
  scroll-snap-align: start
}

.hero-banner .pbg {
  position: absolute;
  inset: 0;
  will-change: transform;
  transition: transform .9s cubic-bezier(.2, .7, .2, 1)
}

.hero-banner:hover .pbg {
  transform: scale(1.05)
}

.hero-banner .pbg .breathe {
  width: 100%;
  height: 100%;
  animation: breathe-soft 24s ease-in-out infinite
}
.hero-banner img {
  object-fit: cover;
 
  object-position: center 50%
}



@keyframes breathe-soft {

  0%,
  100% {
    transform: scale(1.01)
  }

  50% {
    transform: scale(1.04)
  }
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .26));
  transition: background .5s
}

.hero-banner:hover::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, .02), rgba(0, 0, 0, .16))
}

.float-tag {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 11px 11px 22px;
  border-radius: 50px;
  background: rgba(251, 249, 244, .95);
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 40px -20px rgba(0, 0, 0, .5);
  transition: transform .5s cubic-bezier(.2, .7, .2, 1), box-shadow .5s ease
}

.hero-banner:hover .float-tag {
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow: 0 22px 54px -20px rgba(0, 0, 0, .6)
}

.float-tag .ft-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
  box-shadow: 0 0 0 4px rgba(185, 162, 75, .25);
  animation: potwpulse 2s infinite
}

@keyframes potwpulse {

  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(185, 162, 75, .28)
  }

  50% {
    box-shadow: 0 0 0 7px rgba(185, 162, 75, .05)
  }
}

.float-tag .ft-it {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-2)
}

.float-tag .ft-sep {
  width: 1px;
  height: 18px;
  background: var(--line)
}

.float-tag .ft-title {
  font-family: var(--ui);
  font-size: 13px;
  letter-spacing: .02em;
  color: var(--ink);
  max-width: 320px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.float-tag .c {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: #15130d;
  display: grid;
  place-items: center;
  flex: none;
  transition: transform .5s cubic-bezier(.2, .7, .2, 1)
}

.hero-banner:hover .float-tag .c {
  transform: rotate(45deg);
  background: var(--gold-2)
}

.hero-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-top: 34px;
  flex-wrap: wrap
}

.hero-foot p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 620px
}

/* hero load stagger */
.rise {
  opacity: 0;
  transform: translateY(28px);
  animation: rise 1s cubic-bezier(.2, .7, .2, 1) forwards
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none
  }
}

.rotw {
  display: inline-block;
  color: var(--gold);
  transition: opacity .46s cubic-bezier(.2, .7, .2, 1), transform .46s cubic-bezier(.2, .7, .2, 1), filter .46s ease
}

.rotw.out {
  opacity: 0;
  transform: translateY(.16em);
  filter: blur(6px)
}

/* ---------- reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  filter: blur(6px);
  transition: opacity 1.05s cubic-bezier(.2, .7, .2, 1), transform 1.05s cubic-bezier(.2, .7, .2, 1), filter 1.05s ease
}

.reveal.in {
  opacity: 1;
  transform: none;
  filter: none
}

/* ---------- section heads ---------- */
.sec {
  padding: 96px 0;
  scroll-snap-align: start
}

.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 44px;
  padding-top: 8px
}

.sec-head h2 {
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -.01em;
  line-height: 1.04;
  padding-bottom: 2px
}

.sec-head .eyebrow {
  display: block;
  margin-bottom: 18px
}

/* ---------- latest: lead + list ---------- */
.latest {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 56px;
  align-items: start
}

.lead-card {
  cursor: pointer
}

.lead-card .imgbox {
  height: 540px;
  border-radius: 22px;
  overflow: hidden;
  background: var(--bone-2);
  margin-bottom: 24px;
  position: relative
}

.lead-card .imgbox img {
  transition: transform 1.1s cubic-bezier(.2, .7, .2, 1)
}

.lead-card:hover .imgbox img {
  transform: scale(1.05)
}

.lead-card .cat {
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
  display: block
}

.lead-card h3 {
  font-family: var(--display);
  font-size: 38px;
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -.01em;
  max-width: 95%
}

.lead-card p {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  margin-top: 16px;
  max-width: 90%
}

.list-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  cursor: pointer;
  align-items: center
}

.list-item:last-child {
  border-bottom: 1px solid var(--line)
}

.list-item .imgbox {
  height: 120px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bone-2)
}

.list-item .imgbox img {
  transition: transform 1s cubic-bezier(.2, .7, .2, 1)
}

.list-item:hover .imgbox img {
  transform: scale(1.08)
}

.list-item .meta {
  font-family: var(--ui);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px
}

.list-item h4 {
  font-family: var(--display);
  font-size: 21px;
  line-height: 1.1;
  font-weight: 500;
  transition: color .3s
}

.list-item:hover h4 {
  color: var(--gold)
}

/* ---------- dark Haven feature ---------- */
.feature {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
  display: flex;
  align-items: flex-end;
  scroll-snap-align: start
}

.feature .pbg {
  position: absolute;
  inset: -10% 0;
  will-change: transform
}

.feature .pbg .breathe {
  width: 100%;
  height: 100%;
  animation: breathe 26s ease-in-out infinite
}

.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(120% 90% at 75% 35%, rgba(200, 132, 58, .6), transparent 55%),
    linear-gradient(180deg, rgba(16, 14, 10, .35), rgba(16, 14, 10, .9))
}

.feature-in {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 100px
}

.feature .eyebrow {
  color: var(--orange-2);
  margin-bottom: 24px
}

.feature h2 {
  font-family: var(--display);
  /*font-size: clamp(46px, 8vw, 118px);*/
  font-size: clamp(36px, 5.5vw, 76px);
  font-weight: 500;
  /*line-height: .94;*/
  line-height: 1.05;
  letter-spacing: -.02em;
  /*max-width: 14ch*/
    max-width: 22ch
}

.feature h2 .it {
  font-style: italic;
  font-weight: 400
}

.feature-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-top: 34px;
  flex-wrap: wrap
}

.feature p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
  color: #e7ddc9;
  max-width: 520px
}

.sound {
  position: absolute;
  top: 108px;
  right: 48px;
  z-index: 3;
  font-family: var(--ui);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, .4);
  padding: 8px 14px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff
}

.sound .dots {
  display: flex;
  gap: 3px
}

.sound .dots i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fff;
  display: block;
  animation: eq 1s infinite
}

.sound .dots i:nth-child(2) {
  animation-delay: .2s
}

.sound .dots i:nth-child(3) {
  animation-delay: .4s
}

@keyframes eq {

  0%,
  100% {
    opacity: .3
  }

  50% {
    opacity: 1
  }
}

/* ---------- grid strip ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 36px
}

.gcard {
  cursor: pointer
}

.gcard .imgbox {
  height: 300px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bone-2);
  margin-bottom: 18px;
  position: relative
}

.gcard .imgbox img {
  transition: transform 1.1s cubic-bezier(.2, .7, .2, 1)
}

.gcard:hover .imgbox img {
  transform: scale(1.06)
}

.gcard .cat {
  font-family: var(--ui);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  display: block;
  margin-bottom: 11px
}

.gcard h3 {
  font-family: var(--display);
  font-size: 25px;
  line-height: 1.08;
  font-weight: 500;
  transition: color .3s
}

.gcard:hover h3 {
  color: var(--gold)
}

.gcard .meta {
  font-family: var(--ui);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 11px
}

/* ---------- ads (refined, designed-in) ---------- */
.ad {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--dark);
  color: #fff
}

.ad .adimg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.ad .adimg img {
  transition: transform 8s ease
}

.ad:hover .adimg img {
  transform: scale(1.06)
}

.ad .adimg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(16, 14, 10, .93) 32%, rgba(16, 14, 10, .42))
}

.ad-label {
  position: absolute;
  top: 13px;
  left: 16px;
  font-family: var(--ui);
  font-size: 8.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  z-index: 3
}

.ad-in {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 38px
}

.ad-in .k {
  font-family: var(--ui);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 10px
}

.ad-in h4 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.04;
  max-width: 560px
}

.ad-billboard {
  height: 170px;
  margin: 20px 0
}

.ad-native {
  /*height: 150px*/
    height: auto !important;
}
.ad-native .adimg {
  position: relative !important;
  inset: auto !important;
  height: auto !important;
}
.ad-native .adimg img {
  height: auto !important;
  object-fit: contain !important;
}
.ad-native .adimg::after {
  display: none !important;
}
.ad-native .ad-in {
  display: none !important;
}

.ad-mpu {
  height: 300px
}

.ad-half {
  height: 560px;
  border-radius: 18px;
  position: sticky;
  top: 110px
}

.side-sticky {
  position: sticky;
  top: 110px
}

/* ---------- newsletter ---------- */
.news {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
  padding: 72px 56px;
  text-align: center
}

.news::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 120% at 50% 120%, rgba(200, 132, 58, .55), transparent 60%)
}

.news-in {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto
}

.news .eyebrow {
  color: var(--orange-2);
  margin-bottom: 22px
}

.news h2 {
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.01em
}

.news h2 .it {
  font-style: italic;
  font-weight: 400
}

.news-form {
  display: flex;
  max-width: 460px;
  margin: 36px auto 0;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 40px;
  overflow: hidden
}

.news-form input {
  flex: 1;
  background: none;
  border: none;
  color: #fff;
  padding: 16px 24px;
  font-family: var(--serif);
  font-size: 16px;
  outline: none
}

.news-form input::placeholder {
  color: rgba(255, 255, 255, .5)
}

.news-form button {
  background: var(--gold-2);
  color: #15130d;
  padding: 0 28px;
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: .3s
}

.news-form button:hover {
  background: #fff
}

/* ---------- footer ---------- */
.footer {
  background: var(--dark);
  color: #c7bda7;
  padding: 90px 0 36px;
  margin-top: 120px;
  position: relative;
  z-index: 20;
  isolation: isolate
}

.foot-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid #2a2418
}

.foot-brand {
  font-family: var(--display);
  font-size: 46px;
  color: #fff;
  font-weight: 500;
  letter-spacing: .12em
}

.foot-brand .dot {
  color: var(--gold-2)
}

.foot-col h5 {
  font-family: var(--ui);
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px
}

.foot-col a {
  display: block;
  font-family: var(--serif);
  font-size: 15.5px;
  padding: 8px 0;
  transition: .25s
}

.foot-col a:hover {
  color: var(--gold-2);
  padding-left: 6px
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  font-family: var(--ui);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #7a7160
}

/* ---------- article (minimal motion) ---------- */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--gold);
  z-index: 80;
  width: 0
}

.art-fade {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 1s cubic-bezier(.2, .7, .2, 1) .1s forwards
}

.art-hero {
  position: relative;
  height: auto;
  min-height: 560px;
  border-radius: 0 0 30px 30px;
  overflow: hidden;
  background: var(--bone-2)
}

.art-hero img {
  height: auto;
  min-height: 560px;
  object-fit: cover;
  object-position: center top
}

.art-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(16, 14, 10, .78))
}

.art-hero-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  color: #fff;
  padding-bottom: 56px
}

.art-cat {
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 20px;
  display: block
}

.art-title {
  font-family: var(--display);
  font-size: clamp(40px, 6.5vw, 92px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.02em;
  max-width: 16ch
}

.art-meta {
  display: flex;
  gap: 26px;
  margin-top: 26px;
  font-family: var(--ui);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #e2d8c4
}

.art-back {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-2);
  margin: 32px 0;
  transition: gap .3s
}

.art-back:hover {
  gap: 14px;
  color: var(--ink)
}

.art-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 44px;
  align-items: start;
  padding-top: 14px
}

.art-body {
  max-width: 800px
}

.side {
  align-self: stretch;
}

.art-tools {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-bottom: 30px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--line)
}

.art-tools .by {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  margin-right: auto;
  color: var(--ink-2)
}

.art-tools .by b {
  font-style: normal;
  color: var(--ink)
}

.art-tool {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 10px 16px;
  font-family: var(--ui);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: .3s
}

.art-tool:hover {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink)
}

.art-body .ld {
  font-family: var(--display);
  /*font-size: 27px;*/
  /*line-height: 1.35;*/
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.45;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 34px;
  color: var(--ink)
}

.art-body p {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.78;
  color: #2a261d;
  margin-bottom: 20px;
  font-weight: 380
}

.art-body a {
  color: var(--gold, #b89758);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 500;
  transition: color .2s ease, text-decoration-color .2s ease
}

.art-body a:hover {
  color: var(--ink, #100e0a);
  text-decoration-color: var(--gold, #b89758)
}

.art-body p.drop:first-letter {
  font-family: var(--display);
  float: left;
  font-size: 72px;
  line-height: 0.85;
  font-weight: 600;
  margin-right: 10px;
  margin-top: 2px;
  padding: 0;
  color: var(--gold);
}

.art-body h3 {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 500;
  margin: 32px 0 16px
}

.pull,
.art-body .pull,
.art-body blockquote {
  border-left: 3px solid var(--gold) !important;
  padding-left: 28px !important;
  margin: 28px 0 !important;
  font-family: var(--display) !important;
  font-style: italic !important;
  /*font-size: 30px !important;*/
  /*line-height: 1.3 !important;*/
  /*font-size: clamp(20px, 2.2vw, 24px) !important;*/
  /*line-height: 1.35 !important;*/
   font-size: clamp(20px, 2.2vw, 24px) !important;
  line-height: 1.35 !important;
  font-weight: 400 !important;
  color: var(--ink) !important;
  word-break: break-word !important;
}

.art-body img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
  margin: 28px auto 12px auto;
}

.art-body p:has(img) {
  margin-bottom: 0 !important;
}

.art-body p:has(img)+p:not(.caption),
.art-body img+p:not(.caption) {
  margin-top: 28px !important;
}

.art-body img+figcaption,
.art-body img+.caption,
.art-body p.caption,
.art-body figcaption,
.art-fig figcaption,
figcaption {
  font-family: var(--serif) !important;
  font-style: italic !important;
  font-size: 15px !important;
  line-height: 1.5 !important;
  color: var(--ink-3, #7a756b) !important;
  margin-top: 8px !important;
  margin-bottom: 24px !important;
  text-align: center !important;
  display: block !important;
  width: 100% !important;
}

.art-ad {
  height: 170px;
  margin: 44px 0
}

.ad-banner {
  position: relative;
  margin: 44px 0;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  line-height: 0
}

.ad-banner img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1s cubic-bezier(.2, .7, .2, 1)
}

.ad-banner:hover img {
  transform: scale(1.02)
}

.ad-banner .ad-label {
  color: var(--ink-3);
  background: rgba(244, 240, 231, .85);
  padding: 3px 7px;
  border-radius: 5px
}

.tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 46px;
  padding-top: 32px;
  border-top: 1px solid var(--line)
}

.tag {
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: .05em;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 30px;
  transition: .3s
}

.tag:hover {
  background: var(--gold-soft);
  border-color: var(--gold)
}

.side-h {
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ink);
  margin-bottom: 8px
}

.trend {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  align-items: center
}

.trend .tn {
  width: 78px;
  height: 78px;
  flex: none;
  border-radius: 13px;
  overflow: hidden;
  background: var(--bone-2);
  position: relative
}

.trend .tn img {
  transition: transform .9s cubic-bezier(.2, .7, .2, 1)
}

.trend:hover .tn img {
  transform: scale(1.09)
}

.trend .tn .nb {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(16, 14, 10, .7);
  color: #fff;
  font-family: var(--display);
  font-size: 12px;
  display: grid;
  place-items: center
}

.trend .tc {
  font-family: var(--ui);
  font-size: 9.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold)
}

.trend h4 {
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.12;
  font-weight: 500;
  margin-top: 6px;
  transition: color .3s
}

.trend:hover h4 {
  color: var(--gold)
}

@media(max-width:1080px) {

  .art-hero,
  .art-hero img {
    min-height: 500px
  }

  .hero-banner {
    aspect-ratio: 16/7;
  }
    .head-in {
    height: 96px;
  }
  .head.shrunk .head-in {
    height: 64px;
  }
  .header-logo {
    height: 72px;
  }
  .head.shrunk .header-logo {
    height: 48px;
  }

  .wrap {
    padding: 0 28px
  }

  .guides-in {
    margin: 0 28px
  }

  .latest,
  .art-layout {
    grid-template-columns: 1fr
  }

  .hero-foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px
  }

  .grid {
    grid-template-columns: 1fr 1fr
  }

  .ad-half,
  .art-layout .side {
    display: none
  }

  .feature h2 {
    max-width: none
  }

  .foot-top {
    grid-template-columns: 1fr 1fr
  }

  .brand {
    position: static;
    transform: none
  }

  .head-in {
    justify-content: space-between
  }
}

@media(max-width:640px) {
  .hero-banner {
    aspect-ratio: 16/10;
  }
 .header-logo {
    height: 64px;
  }
  .head.shrunk .header-logo {
    height: 44px;
  }

  .float-tag {
    max-width: 92vw;
    padding: 8px 8px 8px 14px;
    gap: 10px;
  }

  .float-tag .ft-it {
    font-size: 13px;
  }

  .float-tag .ft-title {
    font-size: 11px;
    max-width: 110px;
  }

  .float-tag .c {
    width: 26px;
    height: 26px;
  }

  .grid {
    grid-template-columns: 1fr
  }

  .lead-card .imgbox {
    height: 380px
  }

  .foot-top {
    grid-template-columns: 1fr
  }

  .news {
    padding: 48px 26px
  }

  .list-item {
    grid-template-columns: 90px 1fr
  }
}

/* Quill text alignment classes */
.ql-align-center {
  text-align: center
}

.ql-align-right {
  text-align: right
}

.ql-align-justify {
  text-align: justify
}

.ql-align-left {
  text-align: left
}

/* Premium Pagination Styling */
.pagination {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8px;
  align-items: center;
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 500;
}

.pagination .page-item {
  margin: 0;
}

.pagination .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  border-radius: 50%;
  color: var(--ink-2);
  border: 1px solid var(--line);
  background: transparent;
  transition: all 0.3s ease;
  text-decoration: none;
}

.pagination .page-item.active .page-link {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}

.pagination .page-item:hover:not(.active):not(.disabled) .page-link {
  background: var(--gold-soft);
  border-color: var(--gold);
  color: var(--ink);
}

.pagination .page-item.disabled .page-link {
  color: var(--ink-3);
  opacity: 0.5;
  pointer-events: none;
  border-color: var(--line-2);
}
/* About Page Leader Section Responsiveness */
.about-leader {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 20px;
}
.about-leader-avatar {
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bone-2);
  border: 1px solid var(--line);
}
@media (max-width: 768px) {
  .about-leader {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .about-leader-avatar {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
  }
}

`;