:root {
  --bg: #ffffff;
  --bg-alt: #f7f5f0;
  --ink: #111008;
  --ink-soft: #4a463d;
  --line: #e7e3da;
  --accent: #a8481f;
  --white: #ffffff;
  --overlay: rgba(15, 14, 10, 0.9);
  --maxw: 1400px;
  --gutter: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, .serif {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--accent);
}

/* ---------- layout helpers ---------- */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section { padding: clamp(48px, 8vw, 96px) 0; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: 112px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-img {
  height: 72px;
  width: auto;
  display: block;
}

.logo .name {
  font-family: 'Archivo', sans-serif;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  font-weight: 900;
}

.logo .sub {
  display: none;
}

@media (min-width: 640px) {
  .logo .sub {
    display: block;
    border-left: 1px solid var(--line);
    padding-left: 14px;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    line-height: 1.4;
    color: var(--ink-soft);
    text-transform: uppercase;
  }
}

.site-nav {
  display: flex;
  order: 4;
  flex-basis: 100%;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 22px;
  align-items: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

@media (min-width: 900px) {
  .site-nav {
    order: 2;
    flex-basis: auto;
    justify-content: flex-start;
    gap: 30px;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }
}

.site-nav a {
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  border-color: var(--accent);
}

.menu-btn {
  order: 2;
  width: 44px;
  height: 44px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: color 0.2s ease;
}

.menu-btn svg { width: 22px; height: 22px; }
.menu-btn:hover { color: var(--accent); }

@media (min-width: 900px) {
  .menu-btn { order: 3; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  height: min(88vh, 820px);
  min-height: 480px;
  overflow: hidden;
  background: var(--bg-alt);
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.1s ease;
}

.hero-slide.active { opacity: 1; }

.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.hero-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--white);
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.hero-dots button.active { background: var(--white); }

/* ---------- page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  height: 40vh;
  min-height: 260px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 15, 0.38);
}

.page-hero h1 {
  position: relative;
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ---------- intro / about teaser ---------- */
.intro-grid {
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: 1fr;
  align-items: center;
}

@media (min-width: 860px) {
  .intro-grid { grid-template-columns: 1fr 1fr; }
}

.intro-grid img { border-radius: 2px; }

.intro-text p { color: var(--ink-soft); margin: 0 0 1em; }

.btn {
  display: inline-block;
  margin-top: 8px;
  padding: 12px 26px;
  border: 1px solid var(--ink);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
}

.btn:hover { background: var(--ink); color: var(--white); }

/* ---------- section headings ---------- */
.section-head {
  text-align: center;
  margin-bottom: clamp(28px, 5vw, 52px);
}

.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 6px 0 0;
}

/* ---------- grids ---------- */
.grid {
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 700px) {
  .grid { grid-template-columns: repeat(3, 1fr); }
}

.grid-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-alt);
  cursor: pointer;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.grid-item:hover img { transform: scale(1.05); }

/* portfolio grid item label */
.grid-item .cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 16px;
  background: linear-gradient(to top, rgba(20,18,15,0.65), transparent);
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.grid-item:hover .cap { opacity: 1; }

.grid-item .cap .addr {
  font-family: 'Bodoni Moda', serif;
  font-weight: 700;
  font-size: 1.3rem;
}

.grid-item .cap .count {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

.grid-item.pending {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
}

.grid-item.pending .addr-static {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 16px;
  background: linear-gradient(to top, rgba(20,18,15,0.55), transparent);
  color: var(--white);
}

.grid-item.pending::before {
  content: "Bilder legges til";
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- masonry grid (viser hele bildet, ikke beskåret til kvadrat) ---------- */
.mgrid {
  columns: 2;
  column-gap: 6px;
}

@media (min-width: 700px) {
  .mgrid { columns: 3; }
}

.mg-item {
  position: relative;
  display: block;
  break-inside: avoid;
  margin-bottom: 6px;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-alt);
}

.mg-imgwrap {
  width: 100%;
  overflow: hidden;
  background: var(--bg-alt);
}

.mg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.mg-item:hover img { transform: scale(1.04); }

.mg-item .cap { opacity: 0; }
.mg-item:hover .cap { opacity: 1; }

/* ---------- favoritt-grid: fast rutenett, fyller hele rektangelet, ingen hull ---------- */
.fav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 110px;
  grid-auto-flow: dense;
  gap: 6px;
}

@media (min-width: 640px) {
  .fav-grid { grid-auto-rows: 140px; }
}

@media (min-width: 1000px) {
  .fav-grid { grid-auto-rows: 170px; }
}

@media (max-width: 640px) {
  .fav-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 38vw; }
}

.fav-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-alt);
}

.fav-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.fav-item:hover img { transform: scale(1.045); }

.fav-item.span-wide { grid-column: span 2; }
.fav-item.span-tall { grid-row: span 2; }
.fav-item.span-big { grid-column: span 2; grid-row: span 2; }

/* ---------- collage: ekte masonry (fyller alltid helt ned, ingen hull), bildene står rett ---------- */
.collage-grid {
  columns: 2;
  column-gap: 20px;
}

@media (min-width: 700px) {
  .collage-grid { columns: 4; }
}

.wrap-wide {
  max-width: 1800px;
  margin: 0 auto;
  padding-left: clamp(16px, 3vw, 36px);
  padding-right: clamp(16px, 3vw, 36px);
}

.collage-item {
  display: block;
  break-inside: avoid;
  margin: 0 0 20px;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-alt);
  box-shadow: 0 10px 24px -14px rgba(20, 18, 15, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.collage-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.collage-item:hover { transform: translateY(-4px); box-shadow: 0 16px 28px -12px rgba(20, 18, 15, 0.4); z-index: 2; position: relative; }
.collage-item:hover img { transform: scale(1.04); }

/* litt "her og der" uten å vippe bildene ut av lodd */
@media (min-width: 700px) {
  .collage-item.offset { margin-top: 28px; }
}

/* ---------- footer ---------- */
.site-footer {
  background: #16140f;
  color: #cfc7ba;
  margin-top: clamp(48px, 8vw, 96px);
}

.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  padding: clamp(40px, 6vw, 72px) 0 32px;
}

@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); }
}

.footer-logo {
  font-family: 'Archivo', sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--white);
}

.footer-grid h4 {
  font-family: 'Archivo', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8a8177;
  margin: 0 0 14px;
  font-weight: 500;
}

.footer-grid ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-grid a { font-size: 0.85rem; }
.footer-grid a:hover { color: var(--white); }

.social-list a { display: inline-flex; align-items: center; gap: 10px; }
.social-list svg { width: 16px; height: 16px; flex: none; }

.footer-bottom {
  border-top: 1px solid #2a271f;
  padding: 18px var(--gutter);
  font-size: 0.72rem;
  color: #756d62;
  text-align: center;
}

/* ---------- services / pricing ---------- */
.price-table { max-width: 820px; margin: 0 auto; }

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px dotted var(--line);
}

.price-row .room { font-size: 1rem; }
.price-row .price { color: var(--ink-soft); white-space: nowrap; }

.service-block { margin-bottom: clamp(40px, 6vw, 72px); }
.service-block .intro-copy { color: var(--ink-soft); max-width: 640px; margin: 0 0 28px; }

.fine-print {
  margin-top: 40px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  max-width: 720px;
}
.fine-print p { margin: 0 0 10px; }

.note-box {
  border: 1px dashed var(--accent);
  background: #fbf6ee;
  padding: 14px 18px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 32px;
}

/* ---------- project page ---------- */
.project-hero {
  position: relative;
  height: 62vh;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.project-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,13,10,0.75), transparent 55%);
}

.project-hero-caption {
  position: relative;
  color: var(--white);
  padding: 40px var(--gutter);
}

.project-hero-caption .eyebrow { color: #ddd2c0; }
.project-hero-caption h1 {
  font-size: clamp(1.9rem, 5vw, 3rem);
  margin: 6px 0 0;
  letter-spacing: 0.03em;
}

.project-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--ink-soft);
  font-size: 0.82rem;
  margin: 22px 0 0;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.back-link:hover { color: var(--ink); }

.masonry {
  columns: 2;
  column-gap: 4px;
}

@media (min-width: 700px) { .masonry { columns: 3; } }

.masonry .m-item {
  break-inside: avoid;
  margin-bottom: 4px;
  cursor: pointer;
  overflow: hidden;
  background: var(--bg-alt);
  /* aspect-ratio settes inline av JS (kjent bildeforhold) — reserverer plassen før bildet er lastet, så ingenting hopper */
}

.masonry .m-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.masonry .m-item:hover img { transform: scale(1.04); }

.empty-state {
  text-align: center;
  padding: 80px var(--gutter);
  color: var(--ink-soft);
}

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 9, 7, 0.96);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: min(1200px, 92vw);
  max-height: 86vh;
  object-fit: contain;
}

.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  opacity: 0.85;
}

.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { opacity: 1; }

.lightbox-close { top: 20px; right: 20px; }
.lightbox-close svg { width: 26px; height: 26px; }

.lightbox-prev, .lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  padding: 10px;
}

.lightbox-prev { left: 8px; }
.lightbox-next { right: 8px; }
.lightbox-prev svg, .lightbox-next svg { width: 34px; height: 34px; }

.lightbox-counter {
  position: absolute;
  bottom: 22px;
  left: 0; right: 0;
  text-align: center;
  color: #cfc7ba;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

/* ---------- tjenester: tekstblokker og bilderad ---------- */
.svc-intro {
  max-width: 680px;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  box-sizing: content-box;
}
.svc-intro p:not(.eyebrow) { color: var(--ink-soft); font-size: 1.05rem; }

.svc-block {
  max-width: 680px;
  margin: 0 auto;
  padding: clamp(40px, 7vw, 76px) var(--gutter);
  box-sizing: content-box;
}
.svc-block h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 6px 0 14px; }
.svc-block p { color: var(--ink-soft); margin: 0 0 14px; }
.svc-block p:last-child { margin-bottom: 0; }

.svc-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}
@media (max-width: 700px) {
  .svc-strip { grid-template-columns: repeat(2, 1fr); }
}
.svc-strip img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}
@media (max-width: 700px) {
  .svc-strip img { height: 210px; }
  .svc-strip img:last-child:nth-child(odd) { grid-column: 1 / -1; }
}

.svc-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 28px;
}
@media (min-width: 620px) {
  .svc-list { grid-template-columns: 1fr 1fr; }
}
.svc-list li {
  padding-left: 20px;
  position: relative;
  color: var(--ink-soft);
  font-size: 0.96rem;
}
.svc-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.6em;
  width: 8px; height: 1px;
  background: var(--accent);
}

.closing-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 760px) {
  .closing-strip { grid-template-columns: repeat(3, 1fr); }
}
.closing-strip h4 {
  font-family: 'Bodoni Moda', serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0 0 8px;
}
.closing-strip p { color: var(--ink-soft); font-size: 0.92rem; margin: 0; }

/* ---------- kontakt: skjema, ring-knapp, sosiale kort ---------- */
.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, background 0.2s ease;
}

.call-btn svg { width: 18px; height: 18px; }
.call-btn:hover { background: var(--ink); transform: translateY(-2px); }

.contact-form {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  padding: 12px 14px;
  font-family: 'Archivo', sans-serif;
  font-size: 1rem;
  color: var(--ink);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
}

.contact-form textarea { resize: vertical; min-height: 120px; }

.contact-form button {
  align-self: flex-start;
  margin-top: 6px;
  padding: 14px 30px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.contact-form button:hover { background: transparent; color: var(--ink); }

.social-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 560px;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.social-card:hover { border-color: var(--accent); transform: translateY(-2px); }

.social-card .ic {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}

.social-card .ic svg { width: 20px; height: 20px; color: var(--accent); }

.social-card .lbl { font-family: 'Bodoni Moda', serif; font-weight: 700; font-size: 1.05rem; }
.social-card .sub { font-size: 0.76rem; color: var(--ink-soft); }

.contact-layout {
  display: grid;
  gap: clamp(36px, 6vw, 72px);
  grid-template-columns: 1fr;
}
@media (min-width: 860px) {
  .contact-layout { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
}

.contact-side .about-portrait {
  aspect-ratio: 4/5;
  box-shadow: 0 24px 48px -24px rgba(20, 18, 15, 0.35);
}
.contact-side .intro-text { margin-top: 26px; }

.contact-form {
  background: var(--bg-alt);
  padding: clamp(24px, 4vw, 40px);
  border-top: 3px solid var(--accent);
}

.step-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bodoni Moda', serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.icon-row { display: flex; gap: 14px; margin-top: 22px; }
.icon-row a {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.icon-row a svg { width: 19px; height: 19px; }
.icon-row a:hover { border-color: var(--accent); background: var(--bg-alt); }

/* ---------- contact / about page ---------- */
.contact-block { max-width: 480px; }
.contact-block .name { font-size: 1.05rem; margin-bottom: 2px; }
.contact-block .role { color: var(--ink-soft); font-style: italic; margin-bottom: 18px; }
.contact-block a.link { border-bottom: 1px solid var(--line); }
.contact-block .row { padding: 6px 0; }

.about-portrait {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  background: var(--bg-alt);
}

.about-portrait img { width: 100%; height: 100%; object-fit: cover; }

.portrait-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.8rem;
  padding: 24px;
  letter-spacing: 0.06em;
}

/* ================= forside: bildedrevet, hvit, dristig typografi ================= */

.fh-hero { position: relative; margin-top: 2px; }
.fh-hero-img { aspect-ratio: 16/10; overflow: hidden; background: var(--bg-alt); }
@media (min-width: 760px) { .fh-hero-img { aspect-ratio: 21/9; } }
.fh-hero-img img { width: 100%; height: 100%; object-fit: cover; }

.fh-hero-type {
  margin-top: -13vw;
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter) 18px;
}
@media (min-width: 760px) { .fh-hero-type { margin-top: -8vw; } }

.fh-hero-type h1 {
  margin: 0;
  font-size: clamp(3rem, 12vw, 8.5rem);
  line-height: 0.84;
  color: var(--white);
  mix-blend-mode: difference;
}

.fh-hero-sub {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin: 18px var(--gutter) 0;
  flex-wrap: wrap;
}

.fh-hero-sub p { margin: 0; max-width: 360px; font-size: 0.95rem; color: var(--ink-soft); }

.link-arrow {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 2px;
  white-space: nowrap;
}

.fh-mood { padding: clamp(40px, 7vw, 88px) var(--gutter) 0; }
.fh-mood-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 13vw;
  gap: 6px;
  max-width: var(--maxw);
  margin: 14px auto 0;
}
@media (max-width: 700px) {
  .fh-mood-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 44vw; }
}
.fh-mood-grid .m { overflow: hidden; position: relative; background: var(--bg-alt); }
.fh-mood-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.fh-mood-grid .m:hover img { transform: scale(1.045); }
.fh-m1 { grid-column: 1/4; grid-row: 1/3; }
.fh-m2 { grid-column: 4/6; grid-row: 1/2; }
.fh-m3 { grid-column: 6/7; grid-row: 1/3; }
.fh-m4 { grid-column: 4/5; grid-row: 2/3; }
.fh-m5 { grid-column: 5/7; grid-row: 3/4; }
.fh-m6 { grid-column: 1/5; grid-row: 3/4; }
@media (max-width: 700px) {
  .fh-m1, .fh-m2, .fh-m3, .fh-m4, .fh-m5, .fh-m6 { grid-column: auto; grid-row: auto; }
}

.fh-manifesto {
  background: var(--ink);
  color: var(--bg-alt);
  margin-top: clamp(48px, 8vw, 96px);
  padding: clamp(56px, 10vw, 120px) var(--gutter);
}
.fh-manifesto-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
}
@media (min-width: 860px) { .fh-manifesto-inner { grid-template-columns: 1fr 1.7fr; align-items: center; } }
.fh-portrait {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #221f16;
  border: 1px solid #3a3527;
}
.fh-portrait img { width: 100%; height: 100%; object-fit: cover; }
.fh-portrait .portrait-placeholder { color: #9c9583; }
.fh-manifesto blockquote {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(1.6rem, 3.6vw, 2.8rem);
  line-height: 1.18;
  color: var(--bg-alt);
}
.fh-manifesto cite {
  display: block;
  margin-top: 22px;
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a39c8b;
}

.fh-portfolio { padding: clamp(48px, 8vw, 96px) var(--gutter) 0; }
.fh-portfolio-inner { max-width: var(--maxw); margin: 0 auto; }
.fh-portfolio-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 16px; flex-wrap: wrap; gap: 10px; }
.fh-portfolio-head h2 { margin: 4px 0 0; font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
.fh-p-cards { display: grid; grid-template-columns: 1fr; gap: 6px; }
@media (min-width: 760px) { .fh-p-cards { grid-template-columns: 1.15fr 1fr; } }
.fh-p-card { position: relative; overflow: hidden; aspect-ratio: 4/5; background: var(--bg-alt); }
@media (min-width: 760px) { .fh-p-card { aspect-ratio: auto; } }
.fh-p-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.fh-p-card:hover img { transform: scale(1.045); }
.fh-p-card .tag { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px; background: linear-gradient(to top, rgba(10,9,6,.7), transparent 65%); color: #fff; }
.fh-p-card .tag .addr { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.6rem; }
.fh-p-card .tag .n { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: .85; }
