Interior — Landing Minimal
A radically minimal landing for a fictional interior studio built on extreme whitespace and sparse serif type. Two or three large room photographs breathe against a warm paper backdrop while a single quiet call to action anchors the page. A hairline sticky bar, a subtle scroll progress rule, and gentle fade-on-scroll reveals keep everything calm and deliberate. Muted clay, walnut and sage accents let the spaces themselves carry the composition without visual noise.
MCP
Code
:root {
--bg: #f6f2ec;
--paper: #fbf9f5;
--ink: #2c2620;
--ink-2: #5a5147;
--muted: #8a8175;
--clay: #b08968;
--clay-d: #8c6a4f;
--walnut: #5c4433;
--sage: #9caf88;
--line: rgba(44, 38, 32, 0.12);
--white: #fff;
--r-sm: 4px;
--r-md: 8px;
--r-lg: 14px;
--serif: "Cormorant Garamond", Georgia, serif;
--sans: "Inter", system-ui, -apple-system, sans-serif;
}
* {
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
margin: 0;
font-family: var(--sans);
background: var(--bg);
color: var(--ink);
line-height: 1.5;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizeLegibility;
}
img {
display: block;
max-width: 100%;
}
a {
color: inherit;
}
.visually-hidden {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0 0 0 0);
white-space: nowrap;
border: 0;
}
:focus-visible {
outline: 2px solid var(--clay-d);
outline-offset: 3px;
}
/* -------- Scroll progress -------- */
.progress {
position: fixed;
inset: 0 0 auto 0;
height: 2px;
background: transparent;
z-index: 60;
pointer-events: none;
}
.progress span {
display: block;
height: 100%;
width: 0%;
background: linear-gradient(90deg, var(--clay), var(--walnut));
transition: width 0.08s linear;
}
/* -------- Top bar -------- */
.topbar {
position: fixed;
inset: 0 0 auto 0;
z-index: 50;
display: flex;
align-items: center;
justify-content: space-between;
padding: 20px clamp(20px, 6vw, 84px);
border-bottom: 1px solid transparent;
background: rgba(246, 242, 236, 0);
transition: background 0.4s ease, border-color 0.4s ease, padding 0.4s ease;
}
.topbar.stuck {
background: rgba(246, 242, 236, 0.85);
backdrop-filter: blur(10px);
border-bottom-color: var(--line);
padding-top: 14px;
padding-bottom: 14px;
}
.wordmark {
font-family: var(--serif);
font-size: 1.5rem;
font-weight: 600;
letter-spacing: 0.01em;
text-decoration: none;
color: var(--ink);
}
.wordmark span {
color: var(--clay-d);
margin-left: 0.12em;
}
.wordmark.small {
font-size: 1.25rem;
}
.topnav {
display: flex;
align-items: center;
gap: clamp(18px, 3vw, 40px);
}
.topnav a {
font-size: 0.78rem;
letter-spacing: 0.14em;
text-transform: uppercase;
text-decoration: none;
color: var(--ink-2);
transition: color 0.25s ease;
}
.topnav a:hover {
color: var(--walnut);
}
.topnav .quiet-cta {
color: var(--clay-d);
border-bottom: 1px solid var(--line);
padding-bottom: 2px;
}
/* -------- Shared type -------- */
.eyebrow {
font-size: 0.72rem;
letter-spacing: 0.28em;
text-transform: uppercase;
color: var(--muted);
margin: 0 0 clamp(20px, 4vw, 34px);
}
.display {
font-family: var(--serif);
font-weight: 500;
line-height: 1.02;
letter-spacing: -0.01em;
color: var(--ink);
margin: 0;
font-size: clamp(2.9rem, 9vw, 6.4rem);
}
.lede {
max-width: 34ch;
font-size: clamp(1rem, 1.6vw, 1.18rem);
color: var(--ink-2);
margin: clamp(26px, 4vw, 40px) 0 clamp(34px, 5vw, 48px);
}
/* -------- CTA -------- */
.cta {
display: inline-flex;
align-items: center;
gap: 0.7em;
font-size: 0.8rem;
letter-spacing: 0.16em;
text-transform: uppercase;
text-decoration: none;
color: var(--paper);
background: var(--walnut);
border: 1px solid var(--walnut);
padding: 15px 26px;
border-radius: 999px;
cursor: pointer;
transition: background 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
}
.cta:hover {
background: var(--clay-d);
border-color: var(--clay-d);
box-shadow: 0 12px 30px -14px rgba(92, 68, 51, 0.6);
}
.cta:active {
transform: translateY(1px);
}
.cta .arr {
transition: transform 0.3s ease;
}
.cta:hover .arr {
transform: translateX(5px);
}
/* -------- Hero -------- */
main {
padding: 0 clamp(20px, 6vw, 84px);
}
.hero {
min-height: 92vh;
display: flex;
flex-direction: column;
justify-content: center;
padding: 140px 0 90px;
max-width: 1100px;
}
.hero .lede {
max-width: 42ch;
}
/* -------- Chapters -------- */
.chapters {
display: flex;
flex-direction: column;
gap: clamp(90px, 16vw, 200px);
padding: clamp(40px, 8vw, 90px) 0;
}
.chapter {
display: grid;
grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
gap: clamp(30px, 5vw, 72px);
align-items: center;
max-width: 1200px;
margin: 0 auto;
width: 100%;
}
.chapter.alt {
grid-template-columns: minmax(0, 1fr) minmax(0, 1.55fr);
}
.chapter.alt .chapter__media {
order: 2;
}
.chapter.alt .chapter__text {
order: 1;
}
.chapter__media {
position: relative;
overflow: hidden;
border-radius: var(--r-md);
background: var(--bg);
}
.chapter__media img {
width: 100%;
height: clamp(320px, 46vw, 560px);
object-fit: cover;
filter: saturate(0.94);
transition: transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.6s ease;
}
.chapter:hover .chapter__media img {
transform: scale(1.035);
filter: saturate(1.02);
}
.chapter__text {
padding: 0 4px;
}
.index {
font-family: var(--serif);
font-size: clamp(3.2rem, 7vw, 5rem);
font-weight: 400;
color: var(--clay);
line-height: 1;
display: block;
margin-bottom: 0.15em;
}
.chapter__title {
font-family: var(--serif);
font-weight: 500;
font-size: clamp(1.9rem, 3.4vw, 2.6rem);
margin: 0 0 0.5em;
color: var(--ink);
}
.chapter__desc {
color: var(--ink-2);
max-width: 30ch;
margin: 0 0 26px;
font-size: 1rem;
}
.rule {
display: block;
width: 64px;
height: 1px;
background: var(--clay-d);
transform-origin: left;
transform: scaleX(0.4);
opacity: 0.5;
transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.7s ease;
}
.chapter.is-visible .rule {
transform: scaleX(1);
opacity: 1;
}
/* -------- Studio -------- */
.studio {
max-width: 900px;
margin: 0 auto;
padding: clamp(60px, 12vw, 150px) 0;
text-align: center;
}
.statement {
font-family: var(--serif);
font-weight: 400;
font-size: clamp(1.6rem, 3.4vw, 2.5rem);
line-height: 1.28;
color: var(--ink);
margin: 0 auto clamp(48px, 8vw, 80px);
max-width: 24ch;
}
.facts {
list-style: none;
padding: 0;
margin: 0;
display: flex;
justify-content: center;
gap: clamp(28px, 6vw, 80px);
flex-wrap: wrap;
border-top: 1px solid var(--line);
padding-top: clamp(28px, 5vw, 44px);
}
.facts li {
display: flex;
flex-direction: column;
gap: 6px;
}
.facts__k {
font-size: 0.68rem;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--muted);
}
.facts__v {
font-family: var(--serif);
font-size: 1.5rem;
color: var(--walnut);
}
/* -------- Begin / CTA section -------- */
.begin {
max-width: 760px;
margin: 0 auto;
padding: clamp(60px, 12vw, 150px) 0 clamp(80px, 14vw, 170px);
text-align: center;
}
.begin__title {
font-size: clamp(2.6rem, 8vw, 5rem);
}
.begin__lede {
margin-left: auto;
margin-right: auto;
max-width: 40ch;
}
.enquire {
display: flex;
gap: 10px;
max-width: 480px;
margin: 0 auto;
flex-wrap: wrap;
justify-content: center;
}
.enquire input {
flex: 1 1 220px;
min-width: 0;
font-family: var(--sans);
font-size: 0.95rem;
color: var(--ink);
background: var(--paper);
border: 1px solid var(--line);
border-radius: 999px;
padding: 15px 22px;
transition: border-color 0.25s ease, background 0.25s ease;
}
.enquire input::placeholder {
color: var(--muted);
}
.enquire input:focus {
outline: none;
border-color: var(--clay-d);
background: var(--white);
}
.enquire input.invalid {
border-color: #b0553f;
}
/* -------- Footer -------- */
.footer {
border-top: 1px solid var(--line);
padding: 30px clamp(20px, 6vw, 84px);
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
flex-wrap: wrap;
}
.footer__meta {
font-size: 0.76rem;
letter-spacing: 0.06em;
color: var(--muted);
}
/* -------- Figure counter -------- */
.figcount {
position: fixed;
right: clamp(20px, 5vw, 48px);
bottom: clamp(20px, 5vw, 42px);
z-index: 40;
display: flex;
align-items: baseline;
gap: 4px;
font-family: var(--serif);
color: var(--ink-2);
background: rgba(251, 249, 245, 0.7);
backdrop-filter: blur(6px);
border: 1px solid var(--line);
border-radius: 999px;
padding: 8px 16px;
opacity: 0;
transform: translateY(8px);
transition: opacity 0.4s ease, transform 0.4s ease;
}
.figcount.show {
opacity: 1;
transform: translateY(0);
}
.figcount__now {
font-size: 1.35rem;
color: var(--walnut);
}
.figcount__sep {
color: var(--muted);
}
.figcount__all {
color: var(--muted);
}
/* -------- Reveal -------- */
.reveal {
opacity: 0;
transform: translateY(26px);
transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
will-change: opacity, transform;
}
.reveal.is-visible {
opacity: 1;
transform: none;
}
/* -------- Toast -------- */
.toast {
position: fixed;
left: 50%;
bottom: 28px;
transform: translate(-50%, 140%);
z-index: 80;
background: var(--walnut);
color: var(--paper);
font-size: 0.86rem;
letter-spacing: 0.02em;
padding: 13px 22px;
border-radius: 999px;
box-shadow: 0 16px 40px -16px rgba(44, 38, 32, 0.6);
transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
max-width: min(90vw, 420px);
text-align: center;
}
.toast.show {
transform: translate(-50%, 0);
}
/* -------- Responsive -------- */
@media (max-width: 820px) {
.chapter,
.chapter.alt {
grid-template-columns: 1fr;
gap: 26px;
}
.chapter.alt .chapter__media,
.chapter.alt .chapter__text {
order: initial;
}
}
@media (max-width: 520px) {
.topbar {
padding: 16px 20px;
}
.topnav {
gap: 16px;
}
.topnav a:not(.quiet-cta) {
display: none;
}
.hero {
min-height: 88vh;
padding: 118px 0 70px;
}
.display {
font-size: clamp(2.5rem, 13vw, 3.4rem);
}
.chapter__media img {
height: 300px;
}
.facts {
gap: 22px;
}
.enquire {
flex-direction: column;
}
.enquire .cta {
justify-content: center;
}
.figcount {
display: none;
}
.footer {
justify-content: center;
text-align: center;
}
}
@media (prefers-reduced-motion: reduce) {
* {
scroll-behavior: auto !important;
}
.reveal,
.chapter__media img,
.rule,
.cta,
.arr,
.figcount,
.toast {
transition-duration: 0.001s !important;
}
.reveal {
opacity: 1;
transform: none;
}
}(function () {
"use strict";
var prefersReduced = window.matchMedia(
"(prefers-reduced-motion: reduce)"
).matches;
/* ---------- Toast helper ---------- */
var toastEl = document.getElementById("toast");
var toastTimer = null;
function toast(msg) {
if (!toastEl) return;
toastEl.textContent = msg;
toastEl.classList.add("show");
window.clearTimeout(toastTimer);
toastTimer = window.setTimeout(function () {
toastEl.classList.remove("show");
}, 3200);
}
/* ---------- Year stamp ---------- */
var yearEl = document.getElementById("year");
if (yearEl) yearEl.textContent = String(new Date().getFullYear());
/* ---------- Scroll progress + sticky bar ---------- */
var progressBar = document.getElementById("progressBar");
var topbar = document.getElementById("topbar");
var figcount = document.getElementById("figcount");
var ticking = false;
function onScroll() {
var scrollTop = window.pageYOffset || document.documentElement.scrollTop;
var docH =
document.documentElement.scrollHeight - window.innerHeight;
var pct = docH > 0 ? Math.min(1, scrollTop / docH) : 0;
if (progressBar) progressBar.style.width = (pct * 100).toFixed(2) + "%";
if (topbar) topbar.classList.toggle("stuck", scrollTop > 40);
if (figcount) figcount.classList.toggle("show", scrollTop > 200);
ticking = false;
}
window.addEventListener(
"scroll",
function () {
if (!ticking) {
window.requestAnimationFrame(onScroll);
ticking = true;
}
},
{ passive: true }
);
onScroll();
/* ---------- Reveal on scroll ---------- */
var revealEls = Array.prototype.slice.call(
document.querySelectorAll(".reveal")
);
if (prefersReduced || !("IntersectionObserver" in window)) {
revealEls.forEach(function (el) {
el.classList.add("is-visible");
});
} else {
var revealObs = new IntersectionObserver(
function (entries) {
entries.forEach(function (entry) {
if (entry.isIntersecting) {
entry.target.classList.add("is-visible");
revealObs.unobserve(entry.target);
}
});
},
{ threshold: 0.16, rootMargin: "0px 0px -8% 0px" }
);
revealEls.forEach(function (el) {
revealObs.observe(el);
});
}
/* ---------- Figure counter ---------- */
var figNow = document.getElementById("figNow");
var chapters = Array.prototype.slice.call(
document.querySelectorAll(".chapter")
);
if (figNow && chapters.length && "IntersectionObserver" in window) {
var current = "01";
var figObs = new IntersectionObserver(
function (entries) {
entries.forEach(function (entry) {
if (entry.isIntersecting) {
var fig = entry.target.getAttribute("data-figure");
if (fig && fig !== current) {
current = fig;
figNow.textContent = fig;
}
}
});
},
{ threshold: 0.55 }
);
chapters.forEach(function (ch) {
figObs.observe(ch);
});
}
/* ---------- Smooth in-page anchors (respect reduced motion) ---------- */
document
.querySelectorAll('a[href^="#"]')
.forEach(function (link) {
link.addEventListener("click", function (e) {
var id = link.getAttribute("href");
if (!id || id === "#") return;
var target = document.querySelector(id);
if (!target) return;
e.preventDefault();
target.scrollIntoView({
behavior: prefersReduced ? "auto" : "smooth",
block: "start",
});
});
});
/* ---------- Enquiry form ---------- */
var form = document.getElementById("enquireForm");
var email = document.getElementById("email");
var emailRe = /^[^\s@]+@[^\s@]+\.[^\s@]+$/;
if (form && email) {
email.addEventListener("input", function () {
if (email.classList.contains("invalid") && emailRe.test(email.value)) {
email.classList.remove("invalid");
}
});
form.addEventListener("submit", function (e) {
e.preventDefault();
var val = email.value.trim();
if (!emailRe.test(val)) {
email.classList.add("invalid");
email.focus();
toast("Please enter a valid email so we can reply.");
return;
}
email.classList.remove("invalid");
form.reset();
email.blur();
toast("Thank you — we will be in touch within two working days.");
});
}
})();<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Løv Studio — Interior Design</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="progress" id="progress" aria-hidden="true"><span id="progressBar"></span></div>
<header class="topbar" id="topbar">
<a class="wordmark" href="#top">Løv<span>Studio</span></a>
<nav class="topnav" aria-label="Primary">
<a href="#work">Work</a>
<a href="#studio">Studio</a>
<a href="#begin" class="quiet-cta">Enquire</a>
</nav>
</header>
<main id="top">
<!-- HERO -->
<section class="hero reveal" id="hero">
<p class="eyebrow">Interior Design — Est. 2014</p>
<h1 class="display">Rooms that hold<br />their breath.</h1>
<p class="lede">We design calm, considered interiors for people who value the space between things. A small studio, a short list of projects, a long view.</p>
<a href="#begin" class="cta">Begin a project<span class="arr" aria-hidden="true">→</span></a>
</section>
<!-- CHAPTERS -->
<section class="chapters" id="work">
<article class="chapter reveal" data-figure="01">
<div class="chapter__media">
<img
src="https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?auto=format&fit=crop&w=1600&q=80"
alt="A pale living room with a low linen sofa and a single arched window"
loading="lazy" />
</div>
<div class="chapter__text">
<span class="index">01</span>
<h2 class="chapter__title">Maren House</h2>
<p class="chapter__desc">A coastal retreat pared back to plaster, oak and light. Residential — Kerteminde.</p>
<span class="rule" aria-hidden="true"></span>
</div>
</article>
<article class="chapter reveal alt" data-figure="02">
<div class="chapter__media">
<img
src="https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?auto=format&fit=crop&w=1600&q=80"
alt="A minimal dining nook with a round wooden table and two ceramic vases"
loading="lazy" />
</div>
<div class="chapter__text">
<span class="index">02</span>
<h2 class="chapter__title">Atelier No. 9</h2>
<p class="chapter__desc">A working studio where every surface earns its place. Commercial — Copenhagen.</p>
<span class="rule" aria-hidden="true"></span>
</div>
</article>
<article class="chapter reveal" data-figure="03">
<div class="chapter__media">
<img
src="https://images.unsplash.com/photo-1615529182904-14819c35db37?auto=format&fit=crop&w=1600&q=80"
alt="A serene bedroom with soft neutral bedding and a single framed print"
loading="lazy" />
</div>
<div class="chapter__text">
<span class="index">03</span>
<h2 class="chapter__title">Søvn Loft</h2>
<p class="chapter__desc">An attic rethought around rest, shadow and warm wool. Residential — Aarhus.</p>
<span class="rule" aria-hidden="true"></span>
</div>
</article>
</section>
<!-- STUDIO -->
<section class="studio reveal" id="studio">
<p class="eyebrow">The Studio</p>
<p class="statement">We keep our practice small on purpose. Three people, a handful of projects a year, and the time each room deserves. No trends we cannot defend in a decade.</p>
<ul class="facts">
<li><span class="facts__k">Founded</span><span class="facts__v">2014</span></li>
<li><span class="facts__k">Projects / yr</span><span class="facts__v">≤ 6</span></li>
<li><span class="facts__k">Where</span><span class="facts__v">Denmark & beyond</span></li>
</ul>
</section>
<!-- CTA -->
<section class="begin reveal" id="begin">
<h2 class="display begin__title">Shall we begin?</h2>
<p class="lede begin__lede">Tell us a little about the space. We reply to every note within two working days.</p>
<form class="enquire" id="enquireForm" novalidate>
<label class="visually-hidden" for="email">Email address</label>
<input id="email" name="email" type="email" placeholder="[email protected]" autocomplete="email" required />
<button type="submit" class="cta">Begin a project<span class="arr" aria-hidden="true">→</span></button>
</form>
</section>
</main>
<footer class="footer">
<span class="wordmark small">Løv<span>Studio</span></span>
<span class="footer__meta">© <span id="year">2026</span> Løv Studio — A fictional practice</span>
</footer>
<div class="figcount" id="figcount" aria-hidden="true">
<span class="figcount__now" id="figNow">01</span>
<span class="figcount__sep">/</span>
<span class="figcount__all">03</span>
</div>
<div class="toast" id="toast" role="status" aria-live="polite"></div>
<script src="script.js"></script>
</body>
</html>A deliberately quiet landing page for Løv Studio, a fictional interior design practice. The layout leans on extreme whitespace and a small number of oversized room photographs, letting each image sit alone with generous margins. Type is sparse and set in Cormorant Garamond — a large serif index number, a short line of prose, and little else — so the rooms do the talking. A single understated “Begin a project” call to action repeats without ever raising its voice.
The page is built around three full-width chapters, each pairing one photograph with a one-line caption and a thin rule. As you scroll, sections fade and rise into place through an IntersectionObserver, a hairline progress bar tracks reading position at the very top, and the sticky wordmark bar quietly gains a border once you leave the hero. A small figure counter in the corner updates to reflect the chapter currently in view.
Interactions are vanilla JS with a lightweight toast() helper: the CTA confirms an enquiry, the year stamps itself, and all motion respects prefers-reduced-motion. Everything stays legible and AA-contrast against the warm paper background and remains fully responsive down to ~360px, where the type scales down and the fixed counter tucks away.