/* ============================================================================
   DESIGN: Minimalistic — monochrome, hairline rules, maximal whitespace.
   Near-black on off-white, light weights, wide tracking, no shadows, no colour.
   ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&display=swap");

:root {
    --ink: #141414;
    --muted: #8a8a8a;
    --line: #e4e4e4;
    --bg: #fafaf9;
    --font: "Inter", sans-serif;
}

body { font-family: var(--font); color: var(--ink); background: var(--bg); font-size: 16px; font-weight: 400; }
.inset { max-width: 1080px; margin: 0 auto; padding: 0 40px; }
h1, h2, h3, h4 { font-weight: 400; line-height: 1.15; letter-spacing: -.01em; }
p { margin: 0 0 1em; color: #3a3a3a; }
section { padding: 140px 0; border-bottom: 1px solid var(--line); }
.fancy-text { font-size: 1.6rem; font-weight: 400; }
.subheading { color: var(--muted); font-size: .95rem; margin: .75rem 0 4rem; }

.theme-button, .button {
    display: inline-block; background: none; color: var(--ink);
    padding: 4px 0; font-weight: 500; font-size: .85rem;
    text-transform: uppercase; letter-spacing: .14em;
    border-bottom: 1px solid var(--ink);
    transition: opacity .15s ease;
}
.theme-button:hover, .button:hover { opacity: .5; }
.buttons { margin-top: 2rem; display: flex; gap: 32px; flex-wrap: wrap; }

/* small uppercase section labels via fancy-text/subheading already handled */

/* ── Header ─────────────────────────────────────────────────────────────── */
#header { background: var(--bg); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 100; }
#header .inset { display: flex; align-items: center; justify-content: space-between; height: 88px; }
.wordmark { font-size: 1.15rem; font-weight: 500; letter-spacing: .28em; text-transform: uppercase; }
#main-menu .menu { display: flex; align-items: center; gap: 40px; list-style: none; }
.menu-item a { font-size: .72rem; text-transform: uppercase; letter-spacing: .18em; color: var(--muted); }
.menu-item a:hover { color: var(--ink); }
.menu-item--cta a { color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 2px; }
.mobile-menu-button { display: none; }

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hero { height: 86vh; min-height: 560px; color: var(--ink); border-bottom: 1px solid var(--line); padding: 0; }
.hero__slide { height: 86vh; min-height: 560px; background: #efeeec; }
.hero__slide:nth-child(2) { background: #e6e4e0; }
.hero__slide:nth-child(3) { background: #f3f1ee; }
.hero__background { background: var(--bg); }
.hero__overlay { background: transparent; opacity: 0; }
.hero .inset { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.hero__copy { max-width: 760px; }
.hero__copy h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 300; letter-spacing: -.02em; margin-bottom: 1.5rem; }
.hero__subheading { font-size: 1.1rem; color: var(--muted); max-width: 440px; }

/* ── Work grid ─────────────────────────────────────────────────────────── */
.work__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px 40px; }
.work__item { padding-top: 8px; }
.work__item__image { aspect-ratio: 3/4; background: #efeeec; margin-bottom: 16px; }
.work__item__meta { display: flex; justify-content: space-between; align-items: baseline; border-top: 1px solid var(--ink); padding-top: 12px; }
.work__item__title { font-size: 1rem; font-weight: 500; }
.work__item__category { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }

/* ── About (Basic section) ─────────────────────────────────────────────── */
.basic .inset { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.basic h3 { font-size: 2rem; font-weight: 300; margin-bottom: 1.5rem; }
.basic .image { aspect-ratio: 1/1; background: #efeeec; }

/* ── Services (Boxes section) ──────────────────────────────────────────── */
.grid-slider .strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.boxes__item { display: block; padding: 0 28px; border-left: 1px solid var(--line); }
.boxes__item:first-child { border-left: 0; padding-left: 0; }
.boxes__item__content h4 { font-size: 1.1rem; font-weight: 500; margin-bottom: 1rem; }
.boxes__item__content span { font-size: .9rem; color: var(--muted); display: block; }
.boxes__item__button { display: inline-block; margin-top: 1.5rem; font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; border-bottom: 1px solid var(--ink); padding-bottom: 2px; }
.boxes .arrow, .boxes .dots { display: none; }

/* ── Contact (form) ────────────────────────────────────────────────────── */
.contact-form .inset { max-width: 680px; }
.contact-form__form { margin-top: 3rem; }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-form__field { margin-bottom: 36px; }
.contact-form__field label { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; color: var(--muted); margin-bottom: 10px; }
.contact-form__field input, .contact-form__field textarea { width: 100%; padding: 8px 0; border: 0; border-bottom: 1px solid var(--ink); background: none; font: inherit; color: var(--ink); border-radius: 0; }
.contact-form__field input::placeholder, .contact-form__field textarea::placeholder { color: #c4c4c4; }
.contact-form__field input:focus, .contact-form__field textarea:focus { outline: none; border-bottom-width: 2px; }
.contact-form__field textarea { resize: vertical; }
.contact-form__actions { margin-top: 8px; }

/* ── Footer ────────────────────────────────────────────────────────────── */
#footer { background: var(--bg); color: var(--ink); padding: 100px 0 0; }
#footer .columns { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
#footer .wordmark { display: inline-block; margin-bottom: 1.5rem; }
#footer h3 { font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; color: var(--muted); font-weight: 500; margin-bottom: 1.25rem; }
#footer a { color: #3a3a3a; }
#footer a:hover { color: var(--ink); }
#footer li { list-style: none; margin-bottom: 10px; font-size: .9rem; }
.social-links { display: flex; flex-direction: column; gap: 10px; font-size: .9rem; }
#copyright { margin-top: 90px; border-top: 1px solid var(--line); padding: 28px 0; font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }

@media (max-width: 900px) {
    .work__grid, .grid-slider .strip, .contact-form__row,
    .basic .inset, #footer .columns { grid-template-columns: 1fr; }
    .contact-form__row { gap: 24px; }
    #main-menu { display: none; }
}
