/* ============================================================
   FLOWS BY DRE — COMING SOON
   Domain: brisbanebarberstylist.com
   Non-minified CSS for easy editing.
   ============================================================ */

:root {
    --black: #070707;
    --black-soft: #0d0d0d;
    --charcoal: #151515;
    --charcoal-light: #202020;
    --white: #f8f6f2;
    --white-soft: #e8e4de;
    --warm-grey: #baad9e;
    --warm-grey-dark: #8d8277;
    --line: rgba(255, 255, 255, 0.13);
    --line-strong: rgba(255, 255, 255, 0.24);
    --glass: rgba(10, 10, 10, 0.76);
    --button-light: #d7c9b8;
    --button-light-hover: #eaded0;
    --page-width: 1480px;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--black);
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--black);
    color: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.site-page {
    min-height: 100vh;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 25%, rgba(255, 255, 255, 0.05), transparent 30%),
        var(--black);
}

.site-container {
    width: min(calc(100% - 48px), var(--page-width));
    margin: 0 auto;
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
    position: relative;
    z-index: 20;
    background: rgba(7, 7, 7, 0.92);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.brand-logo-wrap {
    width: 68px;
    height: 68px;
    flex: 0 0 68px;
    border-radius: 50%;
    overflow: hidden;
    background: #dedede;
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.22);
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.brand-name {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.30em;
    text-transform: uppercase;
    white-space: nowrap;
}

.brand-subtitle {
    font-size: 10px;
    color: var(--warm-grey);
    line-height: 1.3;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 34px;
}

.desktop-nav a {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.desktop-nav a:hover {
    color: #ffffff;
}

.desktop-nav .nav-outline {
    padding: 15px 22px;
    border: 1px solid rgba(255, 255, 255, 0.56);
}

.desktop-nav .nav-outline:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: #ffffff;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
    position: relative;
    isolation: isolate;
    min-height: calc(100vh - 96px);
    display: flex;
    align-items: center;
    background: #0a0a0a;
}

.hero-background {
    position: absolute;
    z-index: -3;
    inset: 0;
    background-image: url("../images/hero-main.jpg");
    background-size: cover;
    background-position: 77% 20%;
    filter: grayscale(22%) contrast(1.04) brightness(0.72);
    opacity: 0.34;
    transform: scale(1.015);
}

.hero-overlay {
    position: absolute;
    z-index: -2;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(4, 4, 4, 0.99) 0%,
            rgba(4, 4, 4, 0.97) 32%,
            rgba(6, 6, 6, 0.89) 50%,
            rgba(8, 8, 8, 0.56) 72%,
            rgba(8, 8, 8, 0.45) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.38), transparent 45%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(480px, 0.97fr);
    gap: 50px;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 54px;
}

.hero-content,
.hero-media {
    min-width: 0;
}

.hero-content {
    max-width: 820px;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--warm-grey);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.36em;
    text-transform: uppercase;
}

.eyebrow span {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.42);
}

.hero-title {
    margin: 0;
    max-width: 720px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(82px, 8vw, 140px);
    font-weight: 400;
    line-height: 0.78;
    letter-spacing: -0.045em;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 0 4px 28px rgba(0, 0, 0, 0.25);
}

.opening-copy {
    margin: 25px 0 0;
    color: var(--warm-grey);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.31em;
    text-transform: uppercase;
}

/* ============================================================
   COUNTDOWN TIMER
   ============================================================ */

.countdown-wrap {
    margin-top: 24px;
}

.countdown {
    width: min(100%, 720px);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.countdown-box {
    min-width: 0;
    padding: 21px 10px 18px;
    text-align: center;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.82), rgba(7, 7, 7, 0.84));
    border: 1px solid var(--line);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(8px);
}

.countdown-number {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(46px, 4vw, 67px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: #ffffff;
    font-variant-numeric: tabular-nums;
}

.countdown-label {
    display: block;
    margin-top: 10px;
    color: var(--warm-grey);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.23em;
    text-transform: uppercase;
}

.launch-status {
    margin: 12px 0 0;
    width: min(100%, 720px);
    color: rgba(255, 255, 255, 0.48);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-align: right;
}

.domain-line {
    width: min(100%, 720px);
    margin-top: 25px;
    display: grid;
    grid-template-columns: minmax(25px, 1fr) auto minmax(25px, 1fr);
    align-items: center;
    gap: 14px;
}

.domain-line span {
    height: 1px;
    background: rgba(190, 174, 154, 0.35);
}

.domain-line strong {
    color: var(--warm-grey);
    font-size: clamp(12px, 1.2vw, 17px);
    font-weight: 600;
    letter-spacing: 0.27em;
    white-space: nowrap;
}

.tagline {
    margin: 14px 0 0;
    color: var(--white-soft);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(24px, 2.1vw, 36px);
    font-style: italic;
    line-height: 1.25;
}

/* ============================================================
   FEATURES + BUTTONS
   ============================================================ */

.features {
    margin-top: 29px;
    display: flex;
    align-items: stretch;
    gap: 0;
}

.feature {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 3px 28px;
    border-right: 1px solid var(--line);
}

.feature:first-child {
    padding-left: 0;
}

.feature:last-child {
    border-right: 0;
}

.feature-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(218, 201, 181, 0.40);
    border-radius: 50%;
    color: #d8c9b8;
    font-size: 17px;
}

.feature div:last-child {
    min-width: 0;
}

.feature strong,
.feature span {
    display: block;
    line-height: 1.35;
    text-transform: uppercase;
}

.feature strong {
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.feature span {
    margin-top: 2px;
    color: var(--warm-grey);
    font-size: 10px;
    letter-spacing: 0.14em;
}

.hero-actions {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.button {
    min-height: 54px;
    min-width: 245px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    border: 1px solid transparent;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button-light {
    color: #161616;
    background: var(--button-light);
    border-color: var(--button-light);
}

.button-light:hover {
    background: var(--button-light-hover);
    border-color: var(--button-light-hover);
    transform: translateY(-1px);
}

.button-outline {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.14);
    border-color: rgba(255, 255, 255, 0.50);
}

.button-disabled {
    cursor: default;
    opacity: 0.92;
}

.instagram-icon {
    font-size: 20px;
    line-height: 1;
}

.instagram-handle {
    width: min(100%, 720px);
    margin-top: 25px;
    padding-top: 20px;
    display: block;
    border-top: 1px solid var(--line);
    color: var(--warm-grey);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-align: center;
    text-transform: uppercase;
}

.instagram-handle:hover {
    color: #ffffff;
}

/* ============================================================
   RIGHT-SIDE MEDIA
   ============================================================ */

.hero-media {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.main-photo-panel {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    background: #181818;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.main-photo-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.74) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.12), transparent 40%);
    pointer-events: none;
}

.main-photo-panel img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    object-position: 52% 48%;
    filter: grayscale(12%) contrast(1.03) brightness(0.94);
}

.main-photo-caption {
    position: absolute;
    z-index: 2;
    left: 22px;
    right: 22px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.main-photo-caption span {
    color: var(--warm-grey);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.main-photo-caption strong {
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 400;
}

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

.media-card {
    min-width: 0;
    margin: 0;
    background: rgba(8, 8, 8, 0.82);
    border: 1px solid var(--line);
    overflow: hidden;
}

.media-card-image {
    height: 165px;
    overflow: hidden;
    background: #151515;
}

.media-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(18%) contrast(1.05) brightness(0.88);
    transition: transform 260ms ease, filter 260ms ease;
}

.media-card:hover .media-card-image img {
    transform: scale(1.025);
    filter: grayscale(6%) contrast(1.04) brightness(0.94);
}

.media-card h2 {
    margin: 0;
    padding: 13px 8px 14px;
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.14em;
    text-align: center;
    text-transform: uppercase;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
    background: #050505;
    border-top: 1px solid var(--line);
}

.footer-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-inner p,
.footer-inner a {
    margin: 0;
    color: rgba(255, 255, 255, 0.45);
    font-size: 10px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.footer-inner a:hover {
    color: #ffffff;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1180px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr) 440px;
        gap: 34px;
    }

    .feature {
        padding-left: 18px;
        padding-right: 18px;
    }

    .main-photo-panel,
    .main-photo-panel img {
        min-height: 460px;
    }

    .media-card-image {
        height: 140px;
    }
}

@media (max-width: 980px) {
    .desktop-nav a:not(.nav-outline) {
        display: none;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 34px;
        padding-top: 42px;
    }

    .hero-content {
        max-width: none;
    }

    .countdown,
    .launch-status,
    .domain-line,
    .instagram-handle {
        width: 100%;
    }

    .main-photo-panel,
    .main-photo-panel img {
        min-height: 560px;
    }

    .media-card-image {
        height: 220px;
    }
}

@media (max-width: 720px) {
    .site-container {
        width: min(calc(100% - 30px), var(--page-width));
    }

    .header-inner {
        min-height: 82px;
    }

    .brand-logo-wrap {
        width: 56px;
        height: 56px;
        flex-basis: 56px;
    }

    .brand-name {
        font-size: 15px;
        letter-spacing: 0.22em;
    }

    .brand-subtitle {
        display: none;
    }

    .desktop-nav {
        gap: 0;
    }

    .desktop-nav .nav-outline {
        padding: 12px 13px;
        font-size: 9px;
    }

    .hero-grid {
        padding-top: 34px;
        padding-bottom: 38px;
    }

    .eyebrow {
        font-size: 10px;
        letter-spacing: 0.22em;
    }

    .hero-title {
        font-size: clamp(68px, 21vw, 106px);
        line-height: 0.82;
    }

    .opening-copy {
        font-size: 9px;
        line-height: 1.6;
        letter-spacing: 0.20em;
    }

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

    .countdown-number {
        font-size: 50px;
    }

    .launch-status {
        text-align: left;
    }

    .domain-line {
        grid-template-columns: 1fr;
        gap: 8px;
        text-align: center;
    }

    .domain-line span {
        display: none;
    }

    .domain-line strong {
        font-size: 11px;
        letter-spacing: 0.17em;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .tagline {
        font-size: 25px;
    }

    .features {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .feature,
    .feature:first-child {
        padding: 0;
        border: 0;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .button {
        width: 100%;
        min-width: 0;
    }

    .main-photo-panel,
    .main-photo-panel img {
        min-height: 430px;
    }

    .media-cards {
        grid-template-columns: 1fr;
    }

    .media-card {
        display: grid;
        grid-template-columns: 130px minmax(0, 1fr);
        align-items: center;
    }

    .media-card-image {
        height: 130px;
    }

    .media-card h2 {
        padding: 16px;
        text-align: left;
        font-size: 10px;
    }

    .footer-inner {
        padding: 20px 0;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }
}

@media (max-width: 430px) {
    .brand-copy {
        max-width: 140px;
    }

    .brand-name {
        white-space: normal;
        line-height: 1.2;
    }

    .desktop-nav .nav-outline {
        padding: 11px 10px;
        letter-spacing: 0.09em;
    }

    .main-photo-panel,
    .main-photo-panel img {
        min-height: 370px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
