:root {
  --bg: #f7f2ea;
  --paper: #efe7db;
  --ink: #1d1b19;
  --muted: #746d65;
  --line: rgba(29,27,25,0.15);
  --accent: #9b7d61;
}

* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Work Sans", sans-serif;
}

.header,
.hero,
.philosophy,
.portfolio,
.services,
.enquire {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.header {
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .95rem;
}
.brand svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
  fill: none;
  stroke-width: 6;
}
nav {
  display: flex;
  gap: 28px;
}
nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: .92rem;
}

.hero {
  min-height: 70vh;
  display: grid;
  align-content: center;
  padding: 70px 0 90px;
}
.eyebrow,
.label {
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--accent);
  font-size: .72rem;
}
.hero h1,
.services-intro h2,
.enquire h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: .92;
  margin: 14px 0 16px;
}
.hero h1 {
  font-size: clamp(4rem, 9vw, 8.8rem);
  max-width: 9ch;
}
.lede {
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.image-band {
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto 90px;
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 20px;
}
.frame {
  min-height: 420px;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.frame::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid var(--line);
}
.frame-a {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.1), rgba(0,0,0,0.04)),
    url("https://picsum.photos/seed/sheappard-editorial-1/900/1200") center/cover;
}
.frame-b {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(0,0,0,0.08)),
    url("https://picsum.photos/seed/sheappard-editorial-2/700/1000") center/cover;
}
.frame-c {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(0,0,0,0.08)),
    url("https://picsum.photos/seed/sheappard-editorial-3/700/1000") center/cover;
}

.philosophy {
  display: grid;
  grid-template-columns: .4fr 1fr;
  gap: 40px;
  padding: 40px 0 110px;
}
.philosophy p {
  margin-top: 0;
}
.philosophy .large p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
  max-width: 20ch;
  margin-bottom: 24px;
}

.portfolio {
  border-top: 1px solid var(--line);
  padding-top: 30px;
}
.portfolio-row {
  display: grid;
  grid-template-columns: .6fr .8fr 1fr;
  gap: 30px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.meta,
.desc {
  color: var(--muted);
}
.title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: .95;
}

.services {
  display: grid;
  grid-template-columns: .6fr 1fr;
  gap: 40px;
  padding: 110px 0;
}
.services-intro h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
}
.services-list {
  border-top: 1px solid var(--line);
}
.services-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.services-list span {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}
.services-list em {
  color: var(--muted);
  font-style: normal;
  max-width: 30ch;
  text-align: right;
}

.enquire {
  padding: 20px 0 100px;
  text-align: center;
}
.enquire h2 {
  font-size: clamp(2.4rem, 5vw, 5rem);
  max-width: 11ch;
  margin-inline: auto;
}
.enquire a {
  display: inline-block;
  margin-top: 18px;
  color: var(--ink);
  text-decoration: none;
  font-size: 1.1rem;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}

@media (max-width: 900px) {
  .header,
  .philosophy,
  .portfolio-row,
  .services,
  .services-list div,
  .image-band {
    grid-template-columns: 1fr;
    display: grid;
  }
  nav { display: none; }
  .services-list em { text-align: left; }
}