:root {
  --ink: #111111;
  --paper: #f5f4ed;
  --white: #ffffff;
  --blue: #1757d7;
  --coral: #ff563f;
  --yellow: #f5bb24;
  --line: rgba(17, 17, 17, .22);
  --max: 1240px;
}


* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 500 1rem/1.55 "DM Sans", sans-serif; }
a { color: inherit; }
img { max-width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 1000; background: var(--yellow); padding: .75rem 1rem; font-weight: 800; }
.skip-link:focus { top: 1rem; }

.site-header { height: 82px; max-width: var(--max); margin: 0 auto; padding: 0 28px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: block; width: 190px; height: 64px; overflow: hidden; text-decoration: none; line-height: 0; }
.brand img { width: 100%; height: 100%; object-fit: cover; object-position: center 62%; display: block; }
.site-nav { display: flex; align-items: center; gap: 2rem; }
.site-nav a { font-size: .88rem; font-weight: 700; text-decoration: none; }
.site-nav a:not(.nav-cta):hover { text-decoration: underline; text-underline-offset: 5px; }
.nav-cta { border: 2px solid var(--ink); padding: .72rem 1rem; box-shadow: 3px 3px 0 var(--ink); }
.nav-cta:hover { background: var(--yellow); }
.menu-button { display: none; border: 0; background: none; padding: .5rem; }

.hero { max-width: var(--max); margin: 0 auto; padding: 34px 28px 24px; display: grid; grid-template-columns: 1fr; }
.hero-copy { background: var(--paper); border: 1px solid var(--line); padding: clamp(2rem, 5vw, 5rem); display: flex; flex-direction: column; justify-content: center; }
.kicker { margin: 0 0 1.1rem; font: 800 .75rem/1 "Figtree", sans-serif; letter-spacing: .15em; text-transform: uppercase; }
h1, h2 { margin: 0; font: 900 clamp(3.5rem, 7.4vw, 7.4rem)/.87 "Figtree", sans-serif; letter-spacing: -.075em; }
h1 em, h2 em { color: var(--coral); font-style: normal; }
.hero-intro { max-width: 31rem; margin: 2rem 0; font-size: clamp(1.05rem, 1.5vw, 1.25rem); }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: .85rem 1.35rem; border: 2px solid var(--ink); color: inherit; font-weight: 800; text-decoration: none; box-shadow: 4px 4px 0 var(--ink); transition: transform .15s ease, box-shadow .15s ease; }
.button:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
.button-primary { background: var(--yellow); }
.text-link { font-weight: 800; text-underline-offset: 5px; }
.hero-art { background: #f7f7f7; border: 1px solid var(--line); border-top: 0; overflow: hidden; }
.hero-art img { display: block; width: 100%; height: auto; }
.social-strip { min-height: 76px; background: var(--ink); color: var(--white); padding: 0 2rem; display: flex; align-items: center; gap: 2rem; }
.social-strip span { margin-right: auto; color: #aaa; font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; }
.social-strip a { font-weight: 800; text-underline-offset: 5px; }

.section { max-width: var(--max); margin: 0 auto; padding: clamp(5rem, 10vw, 9rem) 28px; }
.section-heading { display: grid; grid-template-columns: 1fr 2fr; margin-bottom: clamp(3rem, 7vw, 6rem); }
.section-heading h2, .process h2, .follow h2, .cta h2 { font-size: clamp(3rem, 6.7vw, 6.6rem); }
.category-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 12px; }
.category { min-height: 310px; padding: 1.6rem; display: flex; flex-direction: column; border: 1px solid var(--line); }
.category:nth-child(1), .category:nth-child(4) { grid-column: span 5; }
.category:nth-child(2), .category:nth-child(3) { grid-column: span 7; }
.category:nth-child(5), .category:nth-child(6) { grid-column: span 6; }
.category-number { font: 800 .75rem/1 "Figtree", sans-serif; letter-spacing: .12em; }
.category h3 { max-width: 9ch; margin: auto 0 1rem; font: 900 clamp(2.2rem, 4vw, 4rem)/.9 "Figtree", sans-serif; letter-spacing: -.06em; }
.category p { max-width: 26rem; margin: 0; }
.category-dark { background: var(--ink); color: white; }
.category-blue { background: var(--blue); color: white; }
.category-coral { background: var(--coral); }
.category-yellow { background: var(--yellow); }
.category-paper { background: var(--white); }
.category-outline { border: 3px solid var(--ink); }

.process { border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 8vw, 8rem); }
.steps { list-style: none; margin: 0; padding: 0; align-self: end; }
.steps li { display: grid; grid-template-columns: 50px 1fr; gap: 1rem; padding: 1.6rem 0; border-top: 1px solid var(--ink); }
.steps li:last-child { border-bottom: 1px solid var(--ink); }
.steps span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--yellow); font-weight: 800; }
.steps h3 { margin: 0 0 .35rem; font: 800 1.25rem/1.1 "Figtree", sans-serif; }
.steps p { margin: 0; color: #454545; }

.follow { background: var(--blue); color: white; display: grid; grid-template-columns: 5fr 7fr; gap: clamp(3rem, 8vw, 8rem); }
.follow-copy > p:last-child { max-width: 30rem; margin-top: 2rem; font-size: 1.12rem; }
.channel-list { align-self: center; }
.channel-list a { min-height: 88px; display: grid; grid-template-columns: 45px 1fr auto 25px; align-items: center; gap: 1rem; border-top: 1px solid rgba(255,255,255,.6); color: white; text-decoration: none; }
.channel-list a:last-child { border-bottom: 1px solid rgba(255,255,255,.6); }
.channel-list a:hover strong { color: var(--yellow); }
.channel-list strong { font: 800 clamp(1.35rem, 2.4vw, 2rem)/1 "Figtree", sans-serif; }
.channel-list small { color: rgba(255,255,255,.75); }
.channel-list i { font-size: 1.4rem; font-style: normal; }
.channel-index { font-size: .72rem; letter-spacing: .12em; }

.cta { max-width: none; background: var(--coral); text-align: center; padding-left: max(28px, calc((100vw - var(--max))/2)); padding-right: max(28px, calc((100vw - var(--max))/2)); }
.cta h2 { max-width: 900px; margin: 0 auto; }
.cta h2 em { color: var(--ink); }
.cta > p:not(.kicker) { max-width: 580px; margin: 2rem auto; font-size: 1.15rem; }
.button-light { background: white; }

footer { max-width: var(--max); margin: 0 auto; min-height: 220px; padding: 3rem 28px; display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 1.5rem; }
.brand-footer { width: 300px; height: 120px; align-self: start; }
footer p { justify-self: end; align-self: start; margin: 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer-links a { font-weight: 700; text-underline-offset: 4px; }
footer small { justify-self: end; }

@media (max-width: 820px) {
  .site-header { height: 70px; }
  .menu-button { display: grid; gap: 4px; cursor: pointer; }
  .menu-button span:not(.sr-only) { display: block; width: 25px; height: 2px; background: var(--ink); }
  .site-nav { display: none; position: absolute; z-index: 20; inset: 70px 0 auto; padding: 1.5rem 28px 2rem; background: var(--paper); border-bottom: 2px solid var(--ink); flex-direction: column; align-items: stretch; gap: 1.2rem; }
  .site-nav.is-open { display: flex; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 12px; }
  .hero-copy { border-right: 1px solid var(--line); padding: 3rem 1.5rem; }
  .social-strip { grid-column: 1; gap: 1rem 1.4rem; flex-wrap: wrap; padding: 1.25rem; }
  .social-strip span { flex-basis: 100%; }
  .section-heading, .process, .follow { grid-template-columns: 1fr; }
  .category:nth-child(n) { grid-column: span 6; }
}

@media (max-width: 560px) {
  h1 { font-size: clamp(3.5rem, 18vw, 5.4rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .category-grid { display: block; }
  .category { min-height: 265px; margin-bottom: 10px; }
  .channel-list a { grid-template-columns: 35px 1fr 22px; padding: 1rem 0; }
  .channel-list small { grid-column: 2; }
  .channel-list i { grid-column: 3; grid-row: 1/3; }
  footer { grid-template-columns: 1fr; }
  footer p, footer small { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
/* Photo-led layout and the supplied MinMade logo. */
body{background:#fff}
.site-header{height:174px}
.brand{width:270px;height:150px;position:relative}
.brand img{position:absolute;width:100%;height:auto;max-width:none;top:-53px}
.site-nav{gap:1.7rem}
.hero{padding-top:0}
.hero-art{border:0;background:white}
.social-strip{background:white;color:#111;justify-content:center;border-bottom:1px solid #ddd;padding:20px}
.social-links{display:flex;justify-content:center;align-items:center;flex-wrap:wrap;gap:16px 28px}
.social-links a,.social-links button{display:inline-flex;align-items:center;gap:9px;min-height:44px;text-decoration:none;background:none;border:0;color:inherit;padding:4px 0;font:600 16px/1.4 Arial,sans-serif}
.social-links img{width:24px;height:24px;object-fit:contain}
.social-links a:hover{text-decoration:underline}
.social-links small{font-size:12px;font-weight:400}
button{cursor:pointer}
.category-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:32px 24px}
.category:nth-child(n){grid-column:auto}
.category{border:0;padding:0;min-height:0;display:block;text-decoration:none;background:white;color:#111}
.category>img{display:block;width:100%;height:290px;object-fit:contain;background:#f6f6f6}
.category h3{max-width:none;font:700 24px/1.2 Arial,sans-serif;letter-spacing:0;margin:16px 0 6px}
.category span{font-size:14px;color:#555}
.category:hover h3{text-decoration:underline}
.section{padding-top:64px;padding-bottom:64px}
.section-heading{display:block;text-align:center;margin-bottom:36px}
.section-heading h2{font-size:clamp(32px,5vw,56px);line-height:1.05;letter-spacing:-.04em}
.follow{background:#f6f6f6;color:#111;grid-template-columns:1fr;gap:24px;text-align:center}
.follow-copy>p:last-child{margin:24px auto}
.cta{background:#eee}
.cta h2 em{color:#111}
.brand-footer{width:270px;height:150px}
footer>.social-links{grid-column:1/-1}
dialog{border:0;border-radius:8px;padding:24px;width:min(960px,94vw);max-height:90vh}
dialog::backdrop{background:#000b}
.dialog-header{display:flex;justify-content:space-between;align-items:center;gap:20px;background:white;position:sticky;top:-24px;padding:12px 0}
.dialog-header h2,dialog h2{font:700 28px/1.2 Arial,sans-serif;letter-spacing:0}
dialog button{padding:8px 18px;background:white;border:1px solid #aaa;font-size:16px}
#gallery-images img{display:block;width:auto;max-height:75vh;object-fit:contain;margin:auto}
body:has(dialog[open]){overflow:hidden}
a:focus-visible,button:focus-visible{outline:3px solid #1757d7;outline-offset:5px}
@media(max-width:820px){.site-header{height:142px}.brand{width:210px;height:118px}.brand img{top:-42px}.site-nav{inset:142px 0 auto}.hero{padding-top:0}.category-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.category:nth-child(n){grid-column:auto}.social-links{gap:12px 20px}.category>img{height:240px}}
@media(max-width:560px){.category-grid{display:grid;grid-template-columns:1fr}.category{margin:0}.category>img{height:320px}.social-links{display:grid;grid-template-columns:repeat(2,max-content)}.social-links small{display:none}.section{padding-top:40px;padding-bottom:40px}.brand-footer{width:210px;height:118px}}

/* Compact banner and larger photo tiles. */
.hero-art{position:relative;aspect-ratio:1598/480;overflow:hidden}
.hero-art img{position:absolute;top:-22.9167%;left:0;width:100%;height:auto}
.category-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:24px}
.category{position:relative;overflow:hidden;min-width:0;aspect-ratio:4/3}
.category>img{width:100%;height:100%;object-fit:cover}
.category::after{content:"";position:absolute;inset:45% 0 0;background:linear-gradient(transparent,rgba(0,0,0,.78));pointer-events:none}
.category h3{position:absolute;bottom:26px;left:26px;right:20px;margin:0;color:white;font-size:clamp(26px,3vw,38px);z-index:1;text-shadow:0 1px 3px #0008}
.category:hover h3{text-decoration:none}
.category:hover>img{transform:scale(1.025)}
.category>img{transition:transform .2s}
#gallery-images{display:grid;gap:30px}
#gallery-images img{max-height:none;width:auto;max-width:100%}
@media(max-width:560px){.category-grid{grid-template-columns:1fr;gap:20px}.category>img{height:100%}.category h3{bottom:20px;left:20px}}
@media(prefers-reduced-motion:reduce){.category>img{transition:none}}
.category[data-gallery="Banners"]{grid-column:1/-1;aspect-ratio:8/3}
.gallery-controls{display:flex;justify-content:flex-end;margin-bottom:16px}
.gallery-controls button{font:500 14px/1.4 Arial,sans-serif;color:#444;background:white;border:1px solid #bbb;border-radius:4px;padding:9px 14px}
@media(max-width:560px){.category[data-gallery="Banners"]{aspect-ratio:4/3}}
