@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600&display=swap&subset=vietnamese');

:root {
    --ink: #16110e;
    --muted: #766f68;
    --line: #e8e0d7;
    --paper: #faf8f4;
    --warm: #b08a67;
    --rose: #84624e;
    --deep: #1f1a16;
}

.article-content {
    max-width: 760px;
    margin: 0 auto;
    color: #3d352f;
    font-size: 17px;
    line-height: 1.9;
}

.article-content p {
    margin: 0 0 1.3em;
}

.article-content h2,
.article-content h3 {
    margin: 1.8em 0 .6em;
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 500;
    line-height: 1.25;
}

.article-content h2 { font-size: clamp(26px, 4vw, 38px); }
.article-content h3 { font-size: clamp(22px, 3vw, 30px); }

.article-content blockquote {
    margin: 28px 0;
    padding: 16px 24px;
    border-left: 3px solid var(--warm);
    color: var(--muted);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 21px;
}

.article-content img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 26px auto;
}

.article-content a {
    color: var(--warm);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.detail-intro {
    max-width: 860px;
    margin: 0 auto 54px;
    padding: 0 20px;
}

.detail-summary {
    max-width: 680px;
    margin: 0 auto 28px;
    color: var(--rose);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(21px, 3vw, 30px);
    line-height: 1.45;
    text-align: center;
}

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

.section-title-left {
    display: block;
    margin-bottom: 34px;
    text-align: center;
}

.section-title-left .eyebrow {
    margin-bottom: 10px;
    color: var(--warm);
    font-family: "Be Vietnam Pro", Arial, sans-serif;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.section-title-left h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 56px);
    letter-spacing: 0;
}

.latest-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    gap: clamp(28px, 5vw, 76px);
    align-items: start;
}

.lead-story-image {
    position: relative;
    display: block;
    aspect-ratio: 1.25 / 1;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}

.lead-story-image::before,
.latest-item-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(35, 27, 22, 0);
    transition: background .35s ease;
}

.lead-story-image:hover::before,
.latest-item-image:hover::before {
    background: rgba(35, 27, 22, .25);
}

.image-overlay {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .3s ease, transform .3s ease;
}

.image-overlay em {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.75);
    border-radius: 50%;
    font-style: normal;
    font-size: 18px;
}

.lead-story-image:hover .image-overlay {
    opacity: 1;
    transform: translateY(0);
}

.featured-hover {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 28px;
    padding: 22px;
    color: #080808;
    background: rgba(211, 214, 214, .74);
    text-align: center;
    opacity: 0;
    transition: opacity .35s ease;
}

.featured-hover strong {
    max-width: 86%;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(18px, 2.6vw, 38px);
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
}

.featured-hover em {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 2px solid currentColor;
    border-radius: 50%;
    font-family: Georgia, serif;
    font-size: 42px;
    font-style: normal;
    font-weight: 400;
    line-height: .6;
    transform: translateX(0);
    transition: transform .25s ease;
}

.lead-story-image:hover .featured-hover,
.latest-item-image:hover .featured-hover {
    opacity: 1;
}

.lead-story-image:hover .featured-hover em,
.latest-item-image:hover .featured-hover em {
    transform: translateX(5px);
}

.lead-story-copy {
    max-width: 680px;
    padding: 24px 0 0;
}

.lead-story-copy h3 {
    max-width: 650px;
    margin: 0 0 14px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 400;
    line-height: 1.08;
}

.lead-story-copy > p:not(.eyebrow) {
    max-width: 580px;
    margin: 0 0 20px;
    color: var(--muted);
    line-height: 1.8;
}

.text-link,
.small-link {
    color: var(--rose);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.text-link span,
.small-link span {
    margin-left: 6px;
    font-size: 17px;
}

.latest-list {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--line);
}

.latest-item {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.latest-item-image {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}

.latest-item h3 {
    margin: 5px 0 13px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 23px;
    font-weight: 400;
    line-height: 1.2;
}

.small-link {
    font-size: 10px;
}

@media (max-width: 820px) {
    .latest-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .latest-item {
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 13px;
    }

    .latest-item h3 {
        font-size: 19px;
    }
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Be Vietnam Pro", "Helvetica Neue", Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: var(--paper);
    letter-spacing: 0;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: .42;
    background-image:
        radial-gradient(circle at 16px 18px, rgba(95,78,61,.12) 0 1px, transparent 1.4px),
        radial-gradient(circle at 86px 54px, rgba(95,78,61,.08) 0 1px, transparent 1.3px);
    background-size: 120px 90px;
}

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

.site-header {
    position: absolute;
    z-index: 5;
    inset: 0 0 auto;
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px clamp(18px, 4.8vw, 76px);
    color: #fff;
}

.site-header.light {
    position: static;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
}

.brand {
    display: grid;
    place-items: center;
    width: 122px;
    height: 72px;
    border: 1px solid rgba(255,255,255,.76);
    line-height: .95;
    text-transform: uppercase;
    font-family: "Playfair Display", Georgia, 'Times New Roman', serif;
    font-weight: 400;
    letter-spacing: 0;
}

.brand span {
    font-size: 31px;
}

.brand small {
    font-family: "Be Vietnam Pro", "Helvetica Neue", Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0;
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(14px, 2vw, 26px);
    justify-content: flex-end;
    font-size: 12px;
    text-transform: uppercase;
}

.main-nav a,
.hero-cats a {
    position: relative;
    padding-bottom: 6px;
}

.main-nav a::after,
.hero-cats a::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
}

.main-nav a:hover::after,
.hero-cats a:hover::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.7);
    background: rgba(0,0,0,.1);
    color: #fff;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    height: 1px;
    margin: 7px 0;
    background: currentColor;
}

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: grid;
    align-items: center;
    justify-items: center;
    padding: 140px clamp(20px, 6vw, 90px) 96px;
    color: #fff;
    text-align: center;
}

.hero-slider,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: opacity 900ms ease, transform 1800ms ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0,0,0,.03), rgba(0,0,0,.22) 58%, rgba(0,0,0,.48));
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 860px;
}

.eyebrow {
    margin: 0 0 14px;
    color: inherit;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
}

.hero h1 {
    margin: 0;
    font-family: "Playfair Display", Georgia, 'Times New Roman', serif;
    font-size: clamp(64px, 12vw, 162px);
    font-weight: 400;
    line-height: .82;
    text-shadow: 0 10px 40px rgba(0,0,0,.22);
}

.hero p:not(.eyebrow) {
    max-width: 620px;
    margin: 30px auto 0;
    color: rgba(255,255,255,.9);
    font-size: 18px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid currentColor;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
}

.button.primary {
    background: rgba(255,255,255,.92);
    color: var(--ink);
    border-color: rgba(255,255,255,.92);
}

.button.ghost {
    color: #fff;
}

.hero-cats {
    position: absolute;
    z-index: 1;
    inset: auto clamp(18px, 5vw, 72px) 28px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(14px, 2vw, 28px);
    font-size: 12px;
    text-transform: uppercase;
}

.section {
    padding: 68px clamp(18px, 4.6vw, 66px) 86px;
}

.section-title {
    text-align: center;
    margin-bottom: 34px;
}

.section-title h2,
.about-copy h2,
.split h2 {
    margin: 0;
    font-family: "Playfair Display", Georgia, 'Times New Roman', serif;
    font-size: clamp(32px, 4.8vw, 62px);
    font-weight: 400;
    text-transform: uppercase;
}

.section-title p {
    margin: 0;
    color: var(--warm);
    font-size: 20px;
    line-height: 1;
}

.category-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}

.category-strip a {
    border: 1px solid var(--line);
    border-left-width: 0;
    padding: 13px 17px;
    background: #fff;
    font-size: 12px;
    text-transform: uppercase;
}

.category-strip a:first-child {
    border-left-width: 1px;
}

.category-strip a.active {
    background: var(--deep);
    color: #fff;
    border-color: var(--deep);
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.featured-grid {
    gap: 22px;
}

.story-card {
    position: relative;
    overflow: hidden;
    background: transparent;
    min-height: 286px;
}

.story-image {
    display: block;
    height: 100%;
    min-height: 286px;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
    transition: transform .55s ease, filter .35s ease;
}

.story-card:hover .story-image {
    transform: scale(1.02);
    filter: grayscale(.25);
}

.story-body {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 38px;
    padding: 24px;
    color: #070707;
    background: rgba(211,214,214,.72);
    text-align: center;
    opacity: 0;
    transition: opacity .35s ease;
}

.story-card:hover .story-body {
    opacity: 1;
}

.story-body p {
    display: none;
    margin: 0;
    color: rgba(0,0,0,.72);
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
}

.story-body h3 {
    margin: 0;
    font-family: "Playfair Display", Georgia, 'Times New Roman', serif;
    font-size: clamp(20px, 1.5vw, 34px);
    font-weight: 600;
    line-height: 1.25;
    text-transform: uppercase;
}

.hover-arrow,
.gallery-overlay em {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 2px solid currentColor;
    border-radius: 50%;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 42px;
    font-style: normal;
    font-weight: 400;
    line-height: .6;
    transform: translateX(0);
    transition: transform .25s ease;
}

.story-card:hover .hover-arrow,
.gallery-item:hover .gallery-overlay em {
    transform: translateX(5px);
}

.news-section {
    background: rgba(255,255,255,.72);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.news-grid-wide {
    max-width: 1180px;
    margin: 0 auto;
}

.news-card {
    background: #fff;
    border: 1px solid var(--line);
}

.news-image {
    display: block;
    aspect-ratio: 16 / 10;
    background-size: cover;
    background-position: center;
}

.news-copy {
    padding: 20px;
}

.news-copy time {
    color: var(--warm);
    font-size: 12px;
    font-weight: 700;
}

.news-copy h3 {
    margin: 10px 0;
    font-family: "Playfair Display", Georgia, 'Times New Roman', serif;
    font-size: 24px;
    line-height: 1.25;
}

.news-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    font-size: 14px;
}

.view-more {
    margin-top: 34px;
    text-align: center;
    text-transform: uppercase;
    font-size: 13px;
}

.about-band {
    display: grid;
    grid-template-columns: minmax(0, .96fr) minmax(320px, 1fr);
    gap: clamp(26px, 5vw, 72px);
    min-height: 640px;
    padding: 74px clamp(18px, 5vw, 72px);
    background: #fff;
}

.about-image {
    min-height: 560px;
    background-size: cover;
    background-position: center;
}

.about-copy {
    padding: clamp(18px, 4vw, 62px) 0;
    align-self: center;
}

.about-copy p:not(.eyebrow) {
    color: var(--muted);
    line-height: 1.9;
    font-size: 16px;
}

.split {
    display: grid;
    grid-template-columns: minmax(280px, 480px) 1fr;
    gap: 46px;
    align-items: start;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.service-list div {
    min-height: 100px;
    display: flex;
    align-items: center;
    padding: 22px;
    background: #fff;
    border: 1px solid var(--line);
    font-weight: 700;
}

.article-hero {
    display: grid;
    grid-template-columns: 54% 46%;
    min-height: 620px;
    background: #fff;
}

.article-image {
    background-size: cover;
    background-position: center;
}

.article-heading {
    align-self: center;
    padding: clamp(30px, 6vw, 80px);
}

.article-heading h1 {
    margin: 0;
    font-family: "Playfair Display", Georgia, 'Times New Roman', serif;
    font-size: clamp(40px, 6vw, 74px);
    font-weight: 400;
    line-height: 1;
}

.article-heading p:last-child,
.article-wrap {
    color: var(--muted);
    line-height: 1.85;
    font-size: 17px;
}

.gallery-page {
    padding: 58px clamp(18px, 5vw, 72px) 90px;
}

.archive-page {
    padding: 58px clamp(18px, 5vw, 72px) 90px;
}

.archive-title {
    margin-bottom: 44px;
}

.archive-title h1 {
    margin: 0;
    font-family: "Playfair Display", Georgia, 'Times New Roman', serif;
    font-size: clamp(28px, 3.8vw, 56px);
    font-weight: 600;
    text-transform: none;
}

.archive-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-title {
    margin-bottom: 44px;
}

.gallery-title h1,
.section-title h1 {
    margin: 0;
    font-family: "Playfair Display", Georgia, 'Times New Roman', serif;
    font-size: clamp(30px, 4.2vw, 58px);
    font-weight: 600;
    text-transform: uppercase;
}

.gallery-title span {
    display: block;
    margin-top: 14px;
    color: var(--muted);
}

.detail-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    display: block;
    min-height: 420px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 42px;
    padding: 28px;
    background: rgba(211,214,214,.72);
    color: #050505;
    text-align: center;
    opacity: 0;
    transition: opacity .35s ease;
}

.gallery-overlay strong {
    font-family: "Playfair Display", Georgia, 'Times New Roman', serif;
    font-size: clamp(22px, 1.8vw, 38px);
    text-transform: uppercase;
    line-height: 1.22;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.article-wrap {
    max-width: 840px;
    margin: 0 auto;
    padding: 60px 20px 90px;
}

.video-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 34px;
    background: #000;
}

.video-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.site-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    padding: 30px 18px;
    color: #fff;
    background: var(--deep);
    font-size: 14px;
}

@media (max-width: 960px) {
    .site-header {
        align-items: center;
    }

    .main-nav {
        position: fixed;
        inset: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 22px;
        background: rgba(20,17,14,.96);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity .25s ease, transform .25s ease;
        font-size: 15px;
    }

    body.menu-open .main-nav {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .menu-toggle {
        position: relative;
        z-index: 6;
        display: block;
    }

    .story-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .detail-gallery,
    .news-grid,
    .archive-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-band,
    .split,
    .article-hero {
        grid-template-columns: 1fr;
    }

    .about-image {
        min-height: 430px;
    }

    .article-image {
        min-height: 420px;
    }
}

@media (max-width: 560px) {
    .hero {
        min-height: 92vh;
        padding-top: 150px;
        padding-bottom: 130px;
    }

    .story-grid,
    .service-list,
    .detail-gallery,
    .news-grid,
    .archive-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        min-height: 280px;
    }

    .section {
        padding-block: 54px;
    }

    .brand {
        width: 104px;
        height: 62px;
    }

    .brand span {
        font-size: 26px;
    }

    .hero-cats {
        bottom: 18px;
        gap: 10px 16px;
        font-size: 11px;
    }
}
