/* ─────────────────────────────────────────────────────────────────────────────
   Abbistract Art

   Every colour here is sampled from the studio's own Etsy banner and shop icon,
   not invented: the cream ground, the sky and pink brush strokes, the periwinkle,
   and the blue of the hand-lettered wordmark. The brand is watercolour and loose
   shapes, so the page is built as paper with washes bleeding in from the edges
   rather than as boxes on a grid.
   ───────────────────────────────────────────────────────────────────────────── */

:root {
  --paper:   #FFF8F5;   /* shop-icon background */
  --paper-2: #FDF1F0;   /* warmer band */
  --ink:     #2E3448;   /* body text; darker than the wordmark for contrast */
  --blue:    #5670A6;   /* the wordmark blue */
  --sky:     #B2DCE5;
  --pink:    #FBB8C4;
  --lilac:   #CBCAEC;
  --muted:   #6B7183;
  --line:    #EADFDC;

  --display: "Fraunces", Georgia, serif;
  --body:    "Karla", system-ui, -apple-system, "Segoe UI", sans-serif;
  --script:  "Sacramento", "Snell Roundhand", cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 1rem; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--body); font-size: 1.0625rem; line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, p { margin: 0; }
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }

.wrap { width: min(1120px, calc(100% - 48px)); margin-inline: auto; }

.skip {
  position: fixed; top: -100px; left: 16px; z-index: 60;
  background: var(--paper); padding: 12px 16px; border-radius: 8px;
  border: 1px solid var(--line);
}
.skip:focus { top: 12px; }

/* Washes drifting behind everything, fixed so they do not scroll with content. */
.wash {
  position: fixed; inset: 0 0 auto 0; width: 100%; height: 100vh;
  z-index: 0; pointer-events: none;
}
.wash-g { filter: blur(46px); }

.head, main, .foot { position: relative; z-index: 1; }

/* ── header ───────────────────────────────────────────────────────────────── */
.head { padding-block: 18px; }
.head-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  width: 52px; height: 52px; border-radius: 50%;
  box-shadow: 0 2px 14px rgba(86, 112, 166, .16);
}
.brand-name {
  font-family: var(--display); font-size: 1.22rem; font-weight: 600;
  letter-spacing: -.015em; color: var(--blue); white-space: nowrap;
}
.brand-name span { font-weight: 400; font-style: italic; }

.nav { display: flex; align-items: center; gap: 26px; font-size: .95rem; }
.nav a { text-decoration: none; }
.nav a:not(.btn):hover { text-decoration: underline; text-underline-offset: 5px; }

/* ── buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 46px; padding: 0 22px; border-radius: 999px;
  font-family: var(--body); font-weight: 600; font-size: .97rem;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn-sm { min-height: 40px; padding: 0 18px; font-size: .9rem; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 8px 20px -10px rgba(86,112,166,.8); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 26px -10px rgba(86,112,166,.85); }
.btn-ghost { border-color: var(--blue); color: var(--blue); background: transparent; }
.btn-ghost:hover { background: rgba(86,112,166,.07); }
.nav .btn-sm { background: var(--blue); color: #fff; }

/* ── hero ─────────────────────────────────────────────────────────────────── */
.hero { padding-block: clamp(48px, 8vw, 104px) clamp(40px, 6vw, 76px); }
.hero-inner { max-width: 760px; }
.script { font-family: var(--script); font-size: clamp(1.9rem, 4.2vw, 2.7rem); color: var(--blue); line-height: 1; margin-bottom: 10px; }
.hero h1 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(2.3rem, 6.4vw, 4rem); line-height: 1.06; letter-spacing: -.025em;
}
.hero h1 em { font-style: italic; font-weight: 400; color: var(--blue); }
.lede { margin-top: 22px; font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--muted); max-width: 58ch; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.note { margin-top: 20px; font-size: .92rem; color: var(--muted); }
.note-center { text-align: center; margin-top: 26px; }
.note a { color: var(--blue); }

/* ── section furniture ────────────────────────────────────────────────────── */
section { padding-block: clamp(46px, 7vw, 86px); }
.sec-head { max-width: 640px; margin-bottom: 34px; }
.sec-head-center { margin-inline: auto; text-align: center; }
.sec-head h2 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem); letter-spacing: -.02em;
}
.sec-head p { margin-top: 12px; color: var(--muted); }

/* ── work grid ────────────────────────────────────────────────────────────── */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; list-style: none; padding: 0; margin: 0; }
.tile {
  position: relative; aspect-ratio: 4 / 5; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line); background: var(--paper-2);
}
/* Placeholders, deliberately abstract washes rather than stand-in photographs.
   Replace each with a real photograph of a piece — see the README. */
.tile::after {
  content: ""; position: absolute; inset: -20%;
  filter: blur(26px); opacity: .85;
}
.tile-a::after { background: radial-gradient(closest-side, var(--sky) 60%, transparent) 30% 35%/70% 70% no-repeat,
                              radial-gradient(closest-side, var(--pink) 60%, transparent) 72% 70%/60% 60% no-repeat; }
.tile-b::after { background: radial-gradient(closest-side, var(--lilac) 60%, transparent) 60% 30%/75% 70% no-repeat,
                              radial-gradient(closest-side, var(--sky) 60%, transparent) 25% 75%/62% 62% no-repeat; }
.tile-c::after { background: radial-gradient(closest-side, var(--pink) 60%, transparent) 40% 30%/72% 70% no-repeat,
                              radial-gradient(closest-side, var(--lilac) 60%, transparent) 70% 78%/58% 58% no-repeat; }
.tile-d::after { background: radial-gradient(closest-side, var(--sky) 55%, transparent) 70% 30%/68% 68% no-repeat,
                              radial-gradient(closest-side, var(--pink) 55%, transparent) 28% 68%/66% 66% no-repeat; }
.tile-e::after { background: radial-gradient(closest-side, var(--lilac) 58%, transparent) 35% 65%/70% 70% no-repeat,
                              radial-gradient(closest-side, var(--pink) 58%, transparent) 72% 28%/60% 60% no-repeat; }
.tile-f::after { background: radial-gradient(closest-side, var(--pink) 58%, transparent) 55% 60%/74% 74% no-repeat,
                              radial-gradient(closest-side, var(--sky) 58%, transparent) 30% 25%/58% 58% no-repeat; }
.tile-tag {
  position: absolute; left: 12px; bottom: 12px; z-index: 1;
  background: rgba(255,248,245,.9); border: 1px solid var(--line);
  border-radius: 999px; padding: 5px 12px; font-size: .76rem; color: var(--muted);
}

/* ── what we make ─────────────────────────────────────────────────────────── */
.makes { background: var(--paper-2); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 26px; }
.card h3 { font-family: var(--display); font-size: 1.22rem; font-weight: 600; }
.card p { margin-top: 10px; color: var(--muted); font-size: .97rem; }

/* ── studio ───────────────────────────────────────────────────────────────── */
.studio-inner { display: grid; grid-template-columns: 190px 1fr; gap: 44px; align-items: start; }
.studio-mark { width: 190px; height: 190px; border-radius: 50%; box-shadow: 0 10px 34px -16px rgba(86,112,166,.6); }
.studio h2 { font-family: var(--display); font-weight: 600; font-size: clamp(1.7rem, 3.4vw, 2.4rem); letter-spacing: -.02em; }
.studio p { margin-top: 16px; color: var(--muted); max-width: 60ch; }
.studio a { color: var(--blue); }

/* ── shop stubs ───────────────────────────────────────────────────────────── */
.shop { background: var(--paper-2); }
.stores { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 780px; margin-inline: auto; }
.store {
  background: var(--paper); border: 1px dashed #D9C9C6; border-radius: 16px;
  padding: 28px; text-align: center;
}
.store h3 { font-family: var(--display); font-size: 1.3rem; font-weight: 600; }
.store p { margin-top: 10px; color: var(--muted); font-size: .95rem; }
.store-state {
  display: inline-block; margin-top: 16px; padding: 7px 16px; border-radius: 999px;
  background: rgba(86,112,166,.09); color: var(--blue);
  font-size: .82rem; font-weight: 600; letter-spacing: .02em;
}
/* When a store goes live the stub becomes an <a class="store"> — this styles that. */
a.store { text-decoration: none; border-style: solid; transition: transform .18s ease, box-shadow .18s ease; }
a.store:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -20px rgba(86,112,166,.7); }

/* ── footer ───────────────────────────────────────────────────────────────── */
.foot { border-top: 1px solid var(--line); padding-block: 34px 40px; }
.foot-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.foot-script { font-family: var(--script); font-size: 1.9rem; color: var(--blue); line-height: 1; }
.foot p { color: var(--muted); font-size: .9rem; }
.foot a { color: var(--blue); font-size: .92rem; }

/* ── responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: 1fr; }
  .studio-inner { grid-template-columns: 1fr; gap: 26px; }
  .studio-mark { width: 140px; height: 140px; }
}
@media (max-width: 640px) {
  .wrap { width: calc(100% - 32px); }
  .nav { gap: 14px; font-size: .9rem; }
  .nav a:not(.btn) { display: none; }
  .stores { grid-template-columns: 1fr; }
  .foot-row { justify-content: center; text-align: center; }
}
@media (max-width: 420px) {
  .grid { grid-template-columns: 1fr; }
  .brand-name { font-size: 1.05rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
