@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&display=swap');

:root {
    --ink: #251e19;
    --muted: #70665e;
    --paper: #f6f1e8;
    --cream: #ebe1d1;
    --gold: #a16d32;
    --line: #d8ccba;
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'DM Sans', Arial, sans-serif;
    --mono: 'DM Mono', monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); }
a { color: inherit; text-decoration: none; }

.site-header {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 18px clamp(24px, 6vw, 96px);
    border-bottom: 1px solid var(--line);
    background: rgba(246, 241, 232, .95);
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(12px);
}

.brand img { display: block; width: min(320px, 47vw); height: auto; }
nav { display: flex; align-items: center; gap: clamp(16px, 2.5vw, 38px); font-size: .85rem; font-weight: 600; }
nav a:not(.nav-contact) { color: var(--muted); }
.nav-contact, .button { background: var(--ink); color: #fff; padding: 12px 17px; transition: transform .2s, background .2s; }
.nav-contact:hover, .button:hover { background: var(--gold); transform: translateY(-2px); }

.hero {
    min-height: min(690px, calc(100vh - 88px));
    display: grid;
    align-items: center;
    padding: 72px clamp(24px, 11vw, 180px);
    background: linear-gradient(90deg, rgba(30, 23, 17, .82) 0%, rgba(30, 23, 17, .46) 46%, rgba(30, 23, 17, .05) 74%), url('assets/2018/05/banner1.jpg') center / cover;
    color: #fff;
}

.hero-content { max-width: 670px; }
.eyebrow { margin: 0 0 18px; color: var(--gold); font: 500 .7rem/1.3 var(--mono); letter-spacing: .15em; text-transform: uppercase; }
.hero .eyebrow { color: #e7c08b; }
h1, h2 { margin: 0; font-family: var(--serif); font-weight: 500; }
h1 { font-size: clamp(3rem, 6.4vw, 6.5rem); line-height: .98; letter-spacing: -.045em; }
h2 { font-size: clamp(2.25rem, 4vw, 4.4rem); line-height: 1.04; letter-spacing: -.035em; }
.hero-copy { max-width: 540px; margin: 28px 0 36px; font-size: clamp(1rem, 1.7vw, 1.25rem); line-height: 1.65; color: #f3eade; }
.button { display: inline-flex; gap: 16px; align-items: center; font-size: .86rem; font-weight: 600; }
.button span { font-size: 1.1rem; }

.intro { max-width: 860px; padding: clamp(76px, 12vw, 160px) 24px; margin: 0 auto; text-align: center; }
.intro h2 { margin: 0 auto 24px; }
.intro > p:last-child { max-width: 610px; margin: 0 auto; color: var(--muted); font-size: 1.08rem; line-height: 1.8; }

.collection { padding: clamp(62px, 8vw, 112px) clamp(24px, 6vw, 96px); background: var(--cream); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin: 0 auto 42px; max-width: 1320px; }
.section-heading > p { max-width: 235px; margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.55; }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 1320px; margin: auto; }
.gallery-item { position: relative; overflow: hidden; aspect-ratio: 1 / 1; background: #c6b6a3; }
.gallery-item img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .45s ease, filter .45s ease; }
.gallery-item span { position: absolute; inset: auto 0 0; padding: 24px 17px 15px; color: white; background: linear-gradient(transparent, rgba(0, 0, 0, .78)); width: 100%; font: 500 .7rem var(--mono); letter-spacing: .08em; text-transform: uppercase; opacity: 0; transform: translateY(12px); transition: opacity .3s, transform .3s; }
.gallery-item:hover img { transform: scale(1.06); filter: brightness(.83); }
.gallery-item:hover span { opacity: 1; transform: translateY(0); }

.contact { display: grid; grid-template-columns: 1.3fr .7fr; gap: clamp(42px, 12vw, 180px); padding: clamp(70px, 10vw, 140px) clamp(24px, 13vw, 210px); background: var(--ink); color: #fff; }
.contact .eyebrow { color: #d4a364; }
.contact h2 { max-width: 640px; }
.contact > div > p:last-child { max-width: 480px; color: #d4ccc4; line-height: 1.75; }
.contact-list { margin: 0; border-top: 1px solid rgba(255, 255, 255, .23); }
.contact-list div { padding: 19px 0; border-bottom: 1px solid rgba(255, 255, 255, .23); }
dt { margin-bottom: 6px; color: #c4b9af; font: .67rem var(--mono); letter-spacing: .12em; text-transform: uppercase; }
dd { margin: 0; font: 500 1rem var(--serif); }
dd a { text-decoration: underline; text-decoration-color: rgba(255, 255, 255, .38); text-underline-offset: 4px; }
dd a:hover { color: #e7c08b; }
.business-hours { display: grid; gap: 9px; font-family: var(--sans); font-size: .84rem; font-weight: 400; }
.hours-line { display: grid; grid-template-columns: 145px 1fr; gap: 14px; align-items: baseline; }
.hours-line strong { color: #fff; font-weight: 600; }
.hours-line span { color: #d4ccc4; }
.contact-separator { margin: 0 7px; color: #c4b9af; }
.map-section { display: grid; grid-template-columns: .8fr 1.2fr; min-height: 490px; background: var(--paper); }
.map-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(58px, 8vw, 130px); }
.map-copy h2 { margin-bottom: 22px; }
.map-copy > p:not(.eyebrow) { max-width: 360px; margin: 0; color: var(--muted); line-height: 1.75; }
.map-link { width: fit-content; margin-top: 30px; color: var(--gold); font: 500 .72rem var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.map-link:hover { color: var(--ink); }
.map-link span { margin-left: 8px; font-size: 1rem; }
.map-section iframe { width: 100%; min-height: 490px; border: 0; filter: grayscale(.2) sepia(.08); }
footer { padding: 26px clamp(24px, 6vw, 96px); display: flex; align-items: center; justify-content: space-between; gap: 18px; background: #18130f; color: #bfb3a7; font-size: .75rem; }
footer img { width: 150px; filter: brightness(1.35); }
footer p { margin: 0; }

@media (max-width: 850px) {
    .gallery { grid-template-columns: repeat(3, 1fr); }
    .contact, .map-section { grid-template-columns: 1fr; }
    .map-section iframe { min-height: 390px; }
}

@media (max-width: 600px) {
    .site-header { min-height: 72px; padding: 14px 20px; }
    .brand img { width: 210px; }
    nav a:not(.nav-contact) { display: none; }
    .nav-contact { padding: 10px 13px; font-size: .78rem; }
    .hero { min-height: 630px; padding: 58px 24px; background-position: 61% center; }
    .section-heading { display: block; }
    .section-heading > p { margin-top: 16px; }
    .gallery { grid-template-columns: repeat(2, 1fr); gap: 9px; }
    .gallery-item span { opacity: 1; transform: none; padding: 24px 11px 10px; font-size: .58rem; }
    .map-copy { padding: 66px 24px; }
    .hours-line { grid-template-columns: 1fr; gap: 2px; }
    .map-section iframe { min-height: 330px; }
    footer { display: block; }
    footer p { margin-top: 14px; }
}
