:root {
--gold: #b18151;
--gold-soft: rgb(201, 150, 119);
--dark: #1e1e1e;
--red: #83301d;
--text: #c4c4c4;
--text-dim: #909090;
--ease: cubic-bezier(0.22, 1, 0.36, 1);
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background: var(--dark);
color: var(--text);
font-family:
system-ui,
-apple-system,
'Segoe UI',
sans-serif;
font-size: 16px;
line-height: 1.5;
}
.serif {
font-family: 'Playfair Display', serif;
font-style: italic;
}
button {
font-family: inherit;
cursor: pointer;
} .nav {
position: fixed;
inset: 0 0 auto 0;
z-index: 50;
backdrop-filter: blur(10px);
background: rgba(30, 30, 30, 0.6);
border-bottom: 1px solid rgba(162, 119, 96, 0.15);
}
.nav-inner {
max-width: 1200px;
margin: 0 auto;
padding: 16px 24px;
display: flex;
justify-content: space-between;
align-items: center;
}
.brand {
color: var(--gold);
font-size: 22px;
letter-spacing: 0.05em;
}
.nav-links {
display: flex;
gap: 32px;
}
.nav-link {
background: none;
border: none;
color: var(--text-dim);
font-size: 12px;
letter-spacing: 0.3em;
text-transform: uppercase;
padding: 4px 0;
position: relative;
transition: color 0.3s;
}
.nav-link.active {
color: var(--gold);
}
.nav-link.active::after {
content: '';
position: absolute;
left: 0;
bottom: -4px;
width: 100%;
height: 1px;
background: var(--gold);
} .hero {
position: relative;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
padding: 0 24px;
}
.hero-bg {
position: absolute;
inset: 0;
}
.hero-bg img {
width: 100%;
height: 100%;
object-fit: cover;
transform: scale(1.05);
}
.hero-bg::after {
content: '';
position: absolute;
inset: 0;
background:
radial-gradient(ellipse at center, transparent 0%, var(--dark) 90%),
linear-gradient(
to bottom,
rgba(30, 30, 30, 0.85),
rgba(30, 30, 30, 0.75),
var(--dark)
);
}
.watermark {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
font-family: 'Playfair Display', serif;
font-size: clamp(120px, 28vw, 280px);
color: var(--gold);
opacity: 0.04;
letter-spacing: 0.1em;
pointer-events: none;
user-select: none;
}
.corner {
position: absolute;
width: 80px;
height: 80px;
border-color: rgba(162, 119, 96, 0.4);
}
.corner-tl {
top: 40px;
left: 40px;
border-top: 1px solid;
border-left: 1px solid;
}
.corner-tr {
top: 40px;
right: 40px;
border-top: 1px solid;
border-right: 1px solid;
}
.corner-bl {
bottom: 40px;
left: 40px;
border-bottom: 1px solid;
border-left: 1px solid;
}
.corner-br {
bottom: 40px;
right: 40px;
border-bottom: 1px solid;
border-right: 1px solid;
}
.hero-inner {
position: relative;
z-index: 2;
text-align: center;
max-width: 900px;
}
.eyebrow {
color: var(--gold);
font-size: 12px;
letter-spacing: 0.5em;
opacity: 0.8;
margin-bottom: 32px;
}
.dash-row {
display: flex;
align-items: center;
justify-content: center;
gap: 24px;
margin-bottom: 32px;
}
.dash-l {
width: 96px;
height: 1px;
background: linear-gradient(to right, transparent, var(--gold));
}
.dash-r {
width: 96px;
height: 1px;
background: linear-gradient(to left, transparent, var(--gold));
}
.diamond {
width: 8px;
height: 8px;
background: var(--gold);
transform: rotate(45deg);
}
.hero h1 {
color: var(--gold);
font-size: clamp(48px, 8vw, 72px);
line-height: 1.1;
letter-spacing: 0.04em;
margin-bottom: 32px;
font-weight: 400;
}
.hero p {
color: var(--text);
max-width: 560px;
margin: 0 auto;
line-height: 1.7;
opacity: 0.9;
font-size: 18px;
}
.scroll-ind {
display: flex;
flex-direction: column;
align-items: center;
gap: 12px;
margin-top: 48px;
}
.scroll-ind p {
color: rgba(162, 119, 96, 0.6);
font-size: 10px;
letter-spacing: 0.4em;
}
.scroll-ind .line {
width: 1px;
height: 48px;
background: linear-gradient(to bottom, var(--gold), transparent);
animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
0%,
100% {
opacity: 1;
}
50% {
opacity: 0.4;
}
} .content {
max-width: 1200px;
margin: 0 auto;
padding: 96px 24px;
}
.section-head {
display: flex;
align-items: flex-end;
justify-content: space-between;
gap: 16px;
flex-wrap: wrap;
padding-bottom: 24px;
margin-bottom: 64px;
border-bottom: 1px solid rgba(162, 119, 96, 0.15);
}
.section-label {
color: rgba(162, 119, 96, 0.7);
font-size: 12px;
letter-spacing: 0.4em;
margin-bottom: 12px;
}
.section-title {
color: var(--gold);
font-size: 40px;
line-height: 1.2;
}
.section-count {
color: var(--text-dim);
font-size: 12px;
letter-spacing: 0.1em;
} .grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
column-gap: 32px;
row-gap: 56px;
margin-bottom: 96px;
}
@media (max-width: 960px) {
.grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 640px) {
.grid {
grid-template-columns: 1fr;
}
}
.card {
cursor: pointer;
transition: transform 0.7s var(--ease);
}
.card:hover {
transform: translateY(-8px);
}
.card-img {
position: relative; overflow: hidden;
margin-bottom: 24px;
aspect-ratio: 3 / 2;
} .card-img > a {
position: relative;
z-index: 0;
display: block;
height: 100%;
}
.gradient,
.tint,
.border-t,
.border-r,
.border-b,
.border-l,
.post-tag,
.glow {
pointer-events: none;
}
.reveal-bottom a {
pointer-events: auto;
}
.card-img img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.7s;
}
.card:hover .card-img img {
transform: scale(1.1);
}
.gradient {
position: absolute;
inset: 0;
background: linear-gradient(
to top,
var(--dark),
rgba(30, 30, 30, 0.6) 50%,
transparent
);
opacity: 0.6;
transition: opacity 0.5s;
}
.card:hover .gradient {
opacity: 0.9;
}
.tint {
position: absolute;
inset: 0;
background: linear-gradient(
to bottom right,
transparent 60%,
rgba(162, 119, 96, 0.2)
);
opacity: 0;
transition: opacity 0.7s;
}
.card:hover .tint {
opacity: 1;
}
.border-t,
.border-r,
.border-b,
.border-l {
position: absolute;
background: var(--gold);
transition: all 0.5s;
}
.border-t {
top: 0;
left: 0;
height: 2px;
width: 0;
transition-delay: 0.1s;
}
.border-r {
top: 0;
right: 0;
width: 2px;
height: 0;
transition-delay: 0.2s;
}
.border-b {
bottom: 0;
right: 0;
height: 2px;
width: 0;
transition-delay: 0.3s;
}
.border-l {
bottom: 0;
left: 0;
width: 2px;
height: 0;
transition-delay: 0.4s;
}
.card:hover .border-t,
.card:hover .border-b {
width: 100%;
}
.card:hover .border-r,
.card:hover .border-l {
height: 100%;
}
.post-tag {
position: absolute;
top: 16px;
left: 16px;
background: var(--red);
color: #fff;
padding: 4px 12px;
font-size: 12px;
letter-spacing: 0.1em;
transition: background 0.5s;
}
.card:hover .post-tag {
background: var(--gold);
}
.reveal-bottom {
position: absolute;
inset: auto 0 0 0;
padding: 24px;
transform: translateY(100%);
transition: transform 0.5s var(--ease);
pointer-events: none;
}
.card:hover .reveal-bottom {
transform: translateY(0);
}
.reveal-bottom .line {
width: 0;
height: 1px;
background: var(--gold);
margin-bottom: 12px;
transition: width 0.5s 0.2s;
}
.card:hover .reveal-bottom .line {
width: 48px;
}
.reveal-bottom p {
color: #fff;
font-size: 14px;
opacity: 0;
transition: opacity 0.3s 0.3s;
}
.card:hover .reveal-bottom p {
opacity: 1;
}
.glow {
position: absolute;
inset: 0;
opacity: 0;
transition: opacity 0.7s;
}
.glow::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 128px;
height: 128px;
background: rgba(162, 119, 96, 0.2);
border-radius: 50%;
filter: blur(60px);
}
.card:hover .glow {
opacity: 1;
}
.meta-row {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 12px;
}
.meta-num {
color: rgba(162, 119, 96, 0.5);
font-family: 'Playfair Display', serif;
font-size: 14px;
letter-spacing: 0.05em;
}
.meta-dash {
width: 32px;
height: 1px;
background: rgba(162, 119, 96, 0.3);
}
.meta-cat {
color: var(--text-dim);
font-size: 10px;
letter-spacing: 0.3em;
text-transform: uppercase;
}
.card-title {
color: var(--gold);
font-size: 26px;
font-weight: 400;
line-height: 1.3;
margin-bottom: 8px;
transition: color 0.3s;
}
.card:hover .card-title {
color: var(--gold-soft);
}
.card-desc {
color: var(--text);
font-size: 14px;
line-height: 1.6;
margin-bottom: 12px;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.card-date {
color: var(--text-dim);
font-size: 12px;
letter-spacing: 0.05em;
} .load-more {
text-align: center;
margin-bottom: 80px;
}
.btn {
position: relative;
overflow: hidden;
padding: 16px 48px;
background: transparent;
border: 1px solid var(--gold);
color: var(--gold);
font-size: 12px;
letter-spacing: 0.2em;
}
.btn span {
position: relative;
z-index: 2;
transition: color 0.3s;
}
.btn::before {
content: '';
position: absolute;
inset: 0;
background: var(--gold);
transform: scaleX(0);
transform-origin: left;
transition: transform 0.5s;
}
.btn:hover::before {
transform: scaleX(1);
}
.btn:hover span {
color: #fff;
} .news-pagination {
text-align: center;
margin: 48px auto 80px;
}
.news-pagination .navigation.pagination {
margin: 0;
}
.news-pagination .screen-reader-text {
clip: rect(1px, 1px, 1px, 1px);
position: absolute !important;
height: 1px;
width: 1px;
overflow: hidden;
}
.news-pagination .nav-links {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
gap: 10px 14px;
}
.news-pagination a.page-numbers,
.news-pagination span.page-numbers {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 40px;
min-height: 40px;
padding: 0 12px;
font-size: 12px;
letter-spacing: 0.08em;
color: var(--text-dim);
border: 1px solid rgba(212, 175, 55, 0.35);
text-decoration: none;
transition:
color 0.25s,
border-color 0.25s,
background 0.25s;
}
.news-pagination a.page-numbers:hover {
color: var(--gold);
border-color: var(--gold);
}
.news-pagination span.page-numbers.current {
color: #fff;
background: rgba(212, 175, 55, 0.25);
border-color: var(--gold);
}
.news-pagination .page-numbers.dots {
border-color: transparent;
min-width: auto;
}
.news-pagination a.prev.page-numbers,
.news-pagination a.next.page-numbers {
min-width: auto;
padding: 10px 18px;
} .fade-in {
opacity: 0;
transform: translateY(24px);
transition:
opacity 1s var(--ease),
transform 1s var(--ease);
}
.fade-in.visible {
opacity: 1;
transform: translateY(0);
} .detail-hero {
position: relative;
height: 80vh;
overflow: hidden;
}
.detail-hero img {
width: 100%;
height: 100%;
object-fit: cover;
}
.detail-hero::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(
to bottom,
rgba(30, 30, 30, 0.4),
rgba(30, 30, 30, 0.6),
var(--dark)
);
}
.back-btn {
position: absolute;
top: 96px;
left: 40px;
z-index: 2;
display: flex;
align-items: center;
gap: 12px;
background: none;
border: none;
color: var(--gold);
font-size: 12px;
letter-spacing: 0.3em;
}
.back-btn .line {
width: 40px;
height: 1px;
background: var(--gold);
transition: width 0.5s;
}
.back-btn:hover .line {
width: 56px;
}
.detail-title-wrap {
position: absolute;
inset: auto 0 0 0;
padding: 24px;
z-index: 2;
}
.detail-title-inner {
max-width: 1152px;
margin: 0 auto;
}
.detail-meta {
display: flex;
align-items: center;
gap: 16px;
margin-bottom: 24px;
flex-wrap: wrap;
}
.detail-meta .post-tag {
position: static;
}
.detail-meta .date {
color: var(--text);
font-size: 12px;
letter-spacing: 0.1em;
}
.detail-title {
color: var(--gold);
font-size: clamp(32px, 6vw, 56px);
line-height: 1.1;
letter-spacing: 0.02em;
font-weight: 400;
}
.detail-sub {
color: var(--text);
font-size: 18px;
line-height: 1.6; margin-top: 24px;
}
.detail-body {
max-width: 1200px;
margin: 0 auto;
padding: 96px 24px;
} .lead {
color: var(--text);
font-size: 24px;
line-height: 1.6;
margin-bottom: 48px;
}
.body-label {
display: flex;
align-items: center;
gap: 16px;
margin-bottom: 40px;
}
.body-label .ld {
width: 48px;
height: 1px;
background: var(--gold);
}
.body-label span {
color: var(--gold);
font-size: 12px;
letter-spacing: 0.3em;
}
.detail-body p {
color: var(--text);
margin-bottom: 24px;
line-height: 1.8;
}
.detail-body .accent {
color: var(--gold);
font-style: italic;
}
.pullquote {
margin: 80px 0;
padding-left: 32px;
border-left: 2px solid var(--gold);
}
.pullquote p {
color: var(--gold);
font-size: 28px;
line-height: 1.5;
font-family: 'Playfair Display', serif;
font-style: italic;
}
.post-tags {
margin-top: 16px;
padding-top: 48px;
}
.tag-list-label {
display: block;
font-size: 12px;
letter-spacing: 0.28em;
text-transform: uppercase;
color: var(--gold);
margin-bottom: 16px;
}
.tag-list {
display: flex;
flex-wrap: wrap;
gap: 10px 12px;
align-items: center;
}
.tag-list a {
display: inline-block;
padding: 8px 18px;
font-size: 12px;
letter-spacing: 0.1em;
color: var(--text-dim);
text-decoration: none;
border: 1px solid rgba(162, 119, 96, 0.4);
transition:
color 0.25s,
border-color 0.25s,
background 0.25s;
}
.tag-list a:hover {
color: var(--gold);
border-color: var(--gold);
background: rgba(162, 119, 96, 0.12);
}
.detail-footer {
margin-top: 40px;
padding-top: 48px;
border-top: 1px solid rgba(162, 119, 96, 0.2);
text-align: center;
}
.related-news {
text-align: left;
max-width: 100%;
}
.related-news-title {
font-size: clamp(22px, 3vw, 30px);
color: var(--gold);
margin-bottom: 32px;
letter-spacing: 0.02em;
font-weight: 400;
text-align: center;
}
.related-news-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
gap: 28px 24px;
}
.related-news-card {
display: flex;
flex-direction: column;
gap: 14px;
text-decoration: none;
color: inherit;
text-align: left;
transition: transform 0.4s var(--ease);
}
.related-news-card:hover {
transform: translateY(-5px);
}
.related-news-thumb {
display: block;
aspect-ratio: 4 / 3;
overflow: hidden;
border: 1px solid rgba(162, 119, 96, 0.3);
background: rgba(0, 0, 0, 0.2);
}
.related-news-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.55s var(--ease);
}
.related-news-card:hover .related-news-thumb img {
transform: scale(1.06);
}
.related-news-card-title {
display: block;
font-size: 16px;
line-height: 1.4;
color: var(--text);
transition: color 0.25s;
}
.related-news-card:hover .related-news-card-title {
color: var(--gold);
}
.related-news-card-date {
display: block;
font-size: 12px;
letter-spacing: 0.08em;
color: var(--text-dim);
margin-top: 4px;
}