:root {
    --bg: #0d0d0e;
    --bg-2: #151517;
    --bg-3: #1c1c1f;
    --ink: #f3efe7;
    --ink-dim: #a9a49a;
    --ink-muted: #6c6863;
    --gold: #c9a24a;
    --gold-soft: #e2c37c;
    --line: rgba(243, 239, 231, 0.12);
    --radius: 4px;
    --max: 1200px;
    --serif: 'Cormorant Garamond', 'Times New Roman', serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 32px;
}

/* ---------- Typography ---------- */

h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.05;
}

h1 { font-size: clamp(2.6rem, 6.5vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.6rem); }
h3 { font-size: 1.5rem; }
h4 { font-family: var(--sans); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }

em { font-style: italic; color: var(--gold-soft); }

.eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 20px;
}

/* ---------- Buttons ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 32px;
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.35s ease;
}

.btn--sm { padding: 10px 22px; font-size: 0.7rem; }

.btn--gold {
    background: var(--gold);
    color: #111;
}
.btn--gold:hover {
    background: var(--gold-soft);
    transform: translateY(-1px);
}

.btn--ghost {
    border-color: rgba(243, 239, 231, 0.25);
    color: var(--ink);
}
.btn--ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ---------- Nav ---------- */

.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    background: rgba(13, 13, 14, 0.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}

.nav__inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav__mark {
    width: 34px; height: 34px;
    display: grid; place-items: center;
    background: var(--gold);
    color: #111;
    font-family: var(--serif);
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50%;
}

.nav__name {
    font-family: var(--serif);
    font-size: 1.15rem;
    letter-spacing: 0.02em;
}

.nav__links {
    display: flex;
    gap: 36px;
}

.nav__links a {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-dim);
    transition: color 0.2s ease;
}
.nav__links a:hover { color: var(--gold); }

.nav__right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav__lang {
    background: none;
    border: 0;
    padding: 6px 0;
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-dim);
    cursor: pointer;
    position: relative;
    transition: color 0.2s ease;
}
.nav__lang::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 2px;
    height: 1px;
    background: currentColor;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.nav__lang:hover { color: var(--gold); }
.nav__lang:hover::after { opacity: 0.6; }

@media (max-width: 820px) {
    .nav__links { display: none; }
    .nav__inner { padding: 14px 24px; }
    .nav__right { gap: 14px; }
}

/* ---------- Hero ---------- */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    overflow: hidden;
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.55) saturate(0.95);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(13,13,14,0.35) 0%, rgba(13,13,14,0.2) 40%, rgba(13,13,14,0.95) 100%),
        linear-gradient(90deg, rgba(13,13,14,0.65) 0%, rgba(13,13,14,0.15) 60%);
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}

.hero__content h1 {
    max-width: 900px;
    margin-bottom: 28px;
}

.hero__sub {
    max-width: 520px;
    color: var(--ink-dim);
    font-size: 1.05rem;
    margin-bottom: 18px;
}
.hero__sub--accent {
    color: var(--ink);
    font-family: var(--serif);
    font-size: 1.35rem;
    line-height: 1.4;
    margin-bottom: 36px;
}

.hero__logo {
    width: 78px;
    height: auto;
    margin-bottom: 44px;
    opacity: 0.92;
    filter: drop-shadow(0 2px 12px rgba(0,0,0,0.4));
}

@media (max-width: 820px) {
    .hero__logo { width: 68px; margin-bottom: 36px; }
}

.hero__cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
}
.hero__scroll span {
    width: 1px; height: 40px;
    background: linear-gradient(var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}
.hero__scroll p {
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ink-muted);
}
@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); transform-origin: top; }
    50% { transform: scaleY(0.4); transform-origin: top; }
}

/* ---------- Intro ---------- */

.intro {
    padding: 140px 0;
    border-bottom: 1px solid var(--line);
}

.intro__grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

.intro__label {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 14px;
}
.intro__label .line { width: 50px; height: 1px; background: var(--gold); }
.intro__label p {
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ink-dim);
}

.intro__text h2 { margin-bottom: 36px; }
.intro__text p {
    font-size: 1.1rem;
    color: var(--ink-dim);
    margin-bottom: 20px;
    max-width: 640px;
}

@media (max-width: 820px) {
    .intro { padding: 90px 0; }
    .intro__grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ---------- Services ---------- */

.services {
    padding: 140px 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--line);
}

.section-head { margin-bottom: 70px; }
.section-head--center { text-align: center; }

.services__category {
    margin-bottom: 60px;
}
.services__category:last-of-type {
    margin-bottom: 0;
}

.services__category-label {
    font-size: 0.72rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 24px;
    padding-left: 4px;
}

.services__grid {
    display: grid;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}
.services__grid--two { grid-template-columns: repeat(2, 1fr); }
.services__grid--one { grid-template-columns: 1fr; }

.services__tagline {
    margin-top: 80px;
    text-align: center;
    font-family: var(--serif);
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-style: italic;
    color: var(--ink-dim);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.service {
    background: var(--bg-2);
    padding: 50px 40px;
    position: relative;
    transition: background 0.3s ease;
}
.service:hover { background: var(--bg-3); }

.service__num {
    display: block;
    font-family: var(--serif);
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 24px;
    letter-spacing: 0.1em;
}

.service h3 {
    margin-bottom: 16px;
    font-weight: 500;
}

.service p {
    color: var(--ink-dim);
    font-size: 0.95rem;
    margin-bottom: 28px;
    min-height: 55px;
}

.service__price {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--gold-soft);
    font-weight: 500;
}

@media (max-width: 820px) {
    .services { padding: 90px 0; }
    .services__grid--two { grid-template-columns: 1fr; }
    .service p { min-height: 0; }
    .services__tagline { margin-top: 50px; }
}

/* ---------- Gallery ---------- */

.gallery {
    padding: 140px 0;
    border-bottom: 1px solid var(--line);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
    gap: 12px;
    padding: 0 12px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery__item {
    overflow: hidden;
    position: relative;
    border-radius: var(--radius);
}
.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery__item:hover img { transform: scale(1.06); }

.gallery__item--tall { grid-row: span 2; }

@media (max-width: 820px) {
    .gallery { padding: 90px 0; }
    .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
    .gallery__item--tall { grid-row: auto; }
}

/* ---------- Brand / American Crew ---------- */

.brand {
    padding: 140px 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--line);
}

.brand__inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.brand__text h2 { margin-bottom: 28px; }
.brand__text p {
    font-size: 1.05rem;
    color: var(--ink-dim);
    margin-bottom: 36px;
    max-width: 520px;
}

.brand__media {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: var(--radius);
    position: relative;
}
.brand__media::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid var(--gold);
    transform: translate(18px, 18px);
    border-radius: var(--radius);
    pointer-events: none;
}
.brand__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 820px) {
    .brand { padding: 90px 0; }
    .brand__inner { grid-template-columns: 1fr; gap: 50px; }
}

/* ---------- Contact ---------- */

.contact {
    padding: 140px 0;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 60px 80px;
}

.contact__head { grid-column: 1 / -1; }

.contact__info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.info-block h4 { margin-bottom: 10px; }
.info-block p {
    color: var(--ink);
    font-size: 1rem;
    line-height: 1.7;
}
.info-block a:hover { color: var(--gold); }

.contact__cta {
    background: var(--bg-2);
    border: 1px solid var(--line);
    padding: 50px 40px;
    border-radius: var(--radius);
    position: relative;
}
.contact__cta::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 60px; height: 1px;
    background: var(--gold);
}

.contact__cta h3 {
    margin-bottom: 14px;
    font-weight: 500;
}
.contact__cta p {
    color: var(--ink-dim);
    margin-bottom: 28px;
}

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

@media (max-width: 820px) {
    .contact { padding: 90px 0; }
    .contact__grid { grid-template-columns: 1fr; gap: 40px; }
    .contact__info { grid-template-columns: 1fr; gap: 30px; }
    .contact__cta { padding: 36px 28px; }
}

/* ---------- Footer ---------- */

.footer {
    padding: 50px 0 40px;
    border-top: 1px solid var(--line);
    background: var(--bg-2);
}

.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--serif);
    font-size: 1.1rem;
}

.footer__meta, .footer__copy {
    font-size: 0.82rem;
    color: var(--ink-muted);
    letter-spacing: 0.04em;
}
