* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background: wheat;
    color: #2f261b;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(245, 222, 179, 0.94);
    border-bottom: 1px solid rgba(75, 54, 33, 0.18);
    backdrop-filter: blur(12px);
}

.navbar {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #3d2a18;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.brand img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 3px solid #fff7e8;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(75, 54, 33, 0.2);
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}

.nav-links a {
    padding: 9px 12px;
    border-radius: 8px;
    color: #4a3521;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
    background: #6e4b25;
    color: #fff8ea;
    transform: translateY(-1px);
}

main {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.hero {
    min-height: calc(100vh - 150px);
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 48px;
    padding: 56px 0 40px;
}

.hero-copy {
    max-width: 680px;
}

.eyebrow {
    margin: 0 0 12px;
    color: #7a4b16;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    color: #332111;
    line-height: 1.1;
}

h1 {
    font-size: clamp(42px, 7vw, 82px);
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 21px;
}

p {
    font-size: 17px;
}

.hero-copy p:not(.eyebrow) {
    max-width: 620px;
    color: #5a432c;
    font-size: 20px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button.primary {
    background: #6e4b25;
    color: #fff8ea;
    box-shadow: 0 12px 28px rgba(78, 51, 24, 0.25);
}

.button.secondary {
    border: 2px solid rgba(74, 53, 33, 0.3);
    color: #3d2a18;
    background: rgba(255, 248, 234, 0.45);
}

.hero-photo {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(73, 51, 27, 0.3);
    background: #fff8ea;
}

.hero-photo::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 2px solid rgba(255, 248, 234, 0.8);
    border-radius: 8px;
    z-index: 1;
    pointer-events: none;
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section {
    margin: 24px 0;
    padding: 34px;
    border: 1px solid rgba(75, 54, 33, 0.18);
    border-radius: 8px;
    background: rgba(255, 248, 234, 0.58);
    box-shadow: 0 18px 48px rgba(83, 58, 31, 0.12);
}

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

.feature-card {
    min-height: 220px;
    padding: 24px;
    border-radius: 8px;
    background: #fff8ea;
    color: #3d2a18;
    text-decoration: none;
    border: 1px solid rgba(75, 54, 33, 0.15);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 34px rgba(73, 51, 27, 0.18);
}

.feature-card span {
    color: #9b5d16;
    font-weight: 900;
}

.feature-card h2 {
    margin-top: 26px;
}

.feature-card p {
    margin-bottom: 0;
    color: #634a30;
}

.split-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 30px;
}

.page-title {
    padding: 54px 0 20px;
}

.page-title h1 {
    font-size: clamp(38px, 6vw, 68px);
}

.content-panel {
    margin: 20px 0 42px;
    padding: 32px;
    border-radius: 8px;
    background: rgba(255, 248, 234, 0.72);
    border: 1px solid rgba(75, 54, 33, 0.18);
}

.profile-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    align-items: start;
}

.profile-layout img,
.gallery-card img {
    border-radius: 8px;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 14px 32px rgba(73, 51, 27, 0.18);
}

.profile-layout img {
    aspect-ratio: 1;
}

.info-list {
    display: grid;
    gap: 12px;
    margin: 0;
}

.info-list p {
    margin: 0;
    padding: 14px 16px;
    border-radius: 8px;
    background: #fff8ea;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 42px;
}

.gallery-card {
    display: block;
    padding: 16px;
    border-radius: 8px;
    background: #fff8ea;
    color: #3d2a18;
    text-decoration: none;
    border: 1px solid rgba(75, 54, 33, 0.14);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(73, 51, 27, 0.16);
}

.gallery-card img {
    height: 220px;
}

.gallery-card h2 {
    margin-top: 16px;
    font-size: 22px;
}

.simple-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 8px;
    background: #fff8ea;
}

.simple-table th,
.simple-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid rgba(75, 54, 33, 0.14);
}

.simple-table th {
    background: #6e4b25;
    color: #fff8ea;
}

.simple-table a {
    color: #7a4b16;
    font-weight: 800;
}

.photo-wall {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 20px 0 42px;
}

.photo-wall figure {
    margin: 0;
    padding: 14px;
    border: 1px solid rgba(75, 54, 33, 0.14);
    border-radius: 8px;
    background: #fff8ea;
    box-shadow: 0 16px 32px rgba(73, 51, 27, 0.14);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.photo-wall figure:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 38px rgba(73, 51, 27, 0.2);
}

.photo-wall img,
.photo-wall video {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    object-fit: cover;
    background: #2f261b;
}

.photo-wall figcaption {
    margin-top: 12px;
    color: #4a3521;
    font-weight: 800;
    text-align: center;
}

.media-hero {
    min-height: calc(100vh - 160px);
    display: grid;
    align-content: center;
    justify-items: center;
    padding: 54px 0 42px;
    text-align: center;
}

.media-hero h1 {
    font-size: clamp(38px, 6vw, 70px);
}

.media-hero p:not(.eyebrow) {
    max-width: 560px;
    color: #5a432c;
    font-size: 19px;
}

.media-player {
    width: min(760px, 100%);
    margin: 24px 0;
    padding: 18px;
    border: 1px solid rgba(75, 54, 33, 0.16);
    border-radius: 8px;
    background: rgba(255, 248, 234, 0.74);
    box-shadow: 0 20px 52px rgba(73, 51, 27, 0.18);
}

.media-player audio,
.media-player video {
    width: 100%;
    display: block;
}

.media-player video {
    max-height: 640px;
    border-radius: 8px;
    background: #2f261b;
}

.audio-player {
    padding: 26px;
}

.footer-link {
    color: #6e4b25;
    font-weight: 800;
    text-decoration: none;
}

.coming-soon-page {
    background:
        linear-gradient(rgba(245, 222, 179, 0.76), rgba(245, 222, 179, 0.76)),
        url("construction-bg.gif") center / 420px auto repeat;
}

.coming-hero {
    min-height: calc(100vh - 160px);
    display: grid;
    align-content: center;
    gap: 26px;
    padding: 54px 0 42px;
}

.moving-banner {
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(75, 54, 33, 0.18);
    border-radius: 8px;
    background: #6e4b25;
    color: #fff8ea;
    font-weight: 900;
    text-transform: uppercase;
}

.moving-banner span {
    display: inline-block;
    min-width: 100%;
    padding: 11px 0;
    white-space: nowrap;
    animation: slideText 15s linear infinite;
}

@keyframes slideText {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

.coming-panel {
    width: min(920px, 100%);
    margin: 0 auto;
    padding: clamp(28px, 5vw, 54px);
    border: 1px solid rgba(75, 54, 33, 0.18);
    border-radius: 8px;
    background: rgba(255, 248, 234, 0.88);
    box-shadow: 0 24px 70px rgba(73, 51, 27, 0.24);
    text-align: center;
}

.coming-panel h1 {
    font-size: clamp(38px, 7vw, 78px);
    word-break: break-word;
}

.coming-panel p:not(.eyebrow) {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    color: #5a432c;
    font-size: 19px;
}

.countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 30px 0 14px;
}

.countdown div {
    min-height: 118px;
    display: grid;
    align-content: center;
    gap: 4px;
    border-radius: 8px;
    background: #fff8ea;
    border: 1px solid rgba(75, 54, 33, 0.15);
}

.countdown strong {
    color: #6e4b25;
    font-size: clamp(34px, 6vw, 58px);
    line-height: 1;
}

.countdown span {
    color: #4a3521;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.countdown-message {
    font-weight: 800;
}

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

.site-footer {
    width: min(1120px, calc(100% - 32px));
    margin: 40px auto 0;
    padding: 26px 0 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: #5a432c;
    border-top: 1px solid rgba(75, 54, 33, 0.18);
}

.social-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.social-links a {
    color: #6e4b25;
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 820px) {
    .navbar,
    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero,
    .intro-grid,
    .split-section,
    .profile-layout,
    .gallery-grid,
    .photo-wall {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-top: 34px;
        gap: 30px;
    }

    .hero-photo {
        max-height: 520px;
    }

    .section,
    .content-panel {
        padding: 22px;
    }

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

@media (max-width: 520px) {
    .nav-links {
        justify-content: flex-start;
    }

    .nav-links a {
        font-size: 14px;
        padding: 8px 10px;
    }

    h1 {
        font-size: 40px;
    }

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