/* Social Film Drama. Colours, type sizes and layout follow the Squarespace site it replaces. */

:root {
  --slate: #373b43;        /* header */
  --slate-deep: #363a44;   /* footer */
  --paper: #e2e5e9;        /* page background */
  --white: #fff;
  --ink: #222;
  --heading: #4a4a4a;
  --subhead: #373b43;
  --muted: #5f5f5f;
  --wine: #551627;         /* buttons, the logo's colour */
  --wine-dark: #3d0f1c;
  --on-wine: #eef7ef;
  --rule: #c6cad0;
  --display: "Outfit", "Helvetica Neue", Arial, sans-serif;
  --text: "Figtree", "Helvetica Neue", Arial, sans-serif;
  --serif: "Alice", Georgia, serif;
  --wrap: 1180px;
  --narrow: 960px;
  --gutter: clamp(16px, 4vw, 40px);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 100px; }
body {
  margin: 0; background: var(--slate-deep); color: var(--ink);
  font: 400 1.125rem/1.8 var(--text);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--wine); }
::selection { background: var(--wine); color: var(--on-wine); }
/* On wine buttons, invert so a selection still shows. */
.button::selection, .button *::selection { background: var(--on-wine); color: var(--wine); }
:focus-visible { outline: 3px solid var(--wine); outline-offset: 3px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 16px; top: -60px; z-index: 20; background: var(--white); color: var(--ink); padding: 8px 14px; }
.skip:focus { top: 12px; }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; color: var(--heading); line-height: 1.2; margin: 0 0 .6em; }
h1 { font-size: clamp(2rem, 1.4rem + 2.2vw, 2.5rem); }
h2 { font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.5rem); }
h3 { font-size: 1.25rem; color: var(--subhead); letter-spacing: .01em; line-height: 1.55; }
p { margin: 0 0 1.1em; }

/* Header */
.header { background: var(--slate); position: sticky; top: 0; z-index: 10; }
.header-inner { max-width: 1400px; margin: 0 auto; padding: 14px var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: 96px; height: auto; }
.nav ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; flex-wrap: wrap; gap: 4px 22px; }
.nav a { font: 400 .92rem/1 var(--display); color: var(--white); text-decoration: none; padding: 8px 0; display: inline-block; border-bottom: 1px solid transparent; }
.nav a:hover, .nav a[aria-current] { border-bottom-color: currentColor; color: var(--white); }
.nav .nav-shop { background: var(--paper); color: var(--ink); padding: 10px 16px; border-radius: 3px; border: 0; }
.nav .nav-shop:hover { background: var(--white); color: var(--ink); }
.menu-toggle { display: none; }

@media (max-width: 900px) {
  .brand img { width: 76px; }
  .menu-toggle { display: grid; place-items: center; width: 48px; height: 48px; background: none; border: 0; color: var(--white); cursor: pointer; }
  .menu-bars, .menu-bars::before, .menu-bars::after { display: block; width: 26px; height: 2px; background: currentColor; position: relative; transition: transform .2s, background .2s; }
  .menu-bars::before, .menu-bars::after { content: ""; position: absolute; left: 0; }
  .menu-bars::before { top: -8px; } .menu-bars::after { top: 8px; }
  .menu-toggle[aria-expanded="true"] .menu-bars { background: transparent; }
  .menu-toggle[aria-expanded="true"] .menu-bars::before { transform: translateY(8px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-bars::after { transform: translateY(-8px) rotate(-45deg); }
  .nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: var(--slate); padding: 8px var(--gutter) 24px; }
  .nav.open { display: block; }
  .nav ul { flex-direction: column; align-items: flex-start; gap: 0; }
  .nav li { width: 100%; border-top: 1px solid rgba(255,255,255,.12); }
  .nav a { font-size: 1.15rem; padding: 14px 0; width: 100%; }
  .nav li:last-child { border: 0; padding-top: 16px; }
  .nav .nav-shop { width: auto; padding: 12px 22px; }
}

/* Sections and layout */
.main { background: var(--paper); }
.section { position: relative; padding: clamp(48px, 7vw, 96px) 0; }
.section + .section { padding-top: 0; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); position: relative; }
.wrap-narrow { max-width: var(--narrow); }
.grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 0 clamp(20px, 3vw, 40px); }
.col { grid-column: span var(--span); min-width: 0; }
@media (max-width: 767px) {
  .grid { display: block; }
  .col-empty { display: none; }
}

.block { margin: 0 0 1.75rem; }
.block:last-child { margin-bottom: 0; }
.spacer { height: 1.5rem; margin: 0; }
.rule { border: 0; border-top: 1px solid var(--rule); margin: 2.5rem 0; }

.prose > :last-child { margin-bottom: 0; }
.prose ul { padding-left: 1.2em; margin: 0 0 1.1em; }
.prose li p { margin: 0 0 .5em; }
.prose a { color: var(--wine); }

/* Buttons */
.block-button { margin: 2rem 0; }
.align-center { text-align: center; } .align-right { text-align: right; }
.button {
  display: inline-block; background: var(--wine); color: var(--on-wine); text-decoration: none;
  font: 600 1.03rem/1.2 var(--display); padding: 1.15em 2.1em; border-radius: 3px; border: 0; cursor: pointer;
  transition: background .15s;
}
.button:hover { background: var(--wine-dark); color: var(--on-wine); }

/* Quotes */
.quote { margin: 2.5rem 0; text-align: center; }
.quote blockquote { margin: 0; }
.quote blockquote p { font: 500 clamp(1.4rem, 1rem + 1.5vw, 2rem)/1.3 var(--display); color: var(--ink); margin: 0; }
.quote blockquote p::before { content: "\201C"; } .quote blockquote p::after { content: "\201D"; }
.quote figcaption { font: 400 1.05rem/1.6 var(--serif); margin-top: 1.25rem; }
.quote figcaption::before { content: "\2014\00a0"; }

/* Images and video */
.image { margin-left: 0; margin-right: 0; }
.video { margin-left: 0; margin-right: 0; }
.video-frame { position: relative; aspect-ratio: 16 / 9; background: #111; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video figcaption { font: 600 .95rem/1.4 var(--display); text-transform: uppercase; letter-spacing: .08em; margin-top: .75rem; text-align: center; }

/* Home */
.section-image { color: var(--white); overflow: hidden; background: #111; padding: clamp(80px, 12vw, 160px) 0; }
.section-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.section-image .quote blockquote p { color: var(--white); font-family: var(--serif); font-weight: 400; font-size: clamp(1.25rem, 1rem + 1vw, 1.75rem); line-height: 1.5; }
.section-image .quote figcaption { font-size: 1rem; line-height: 1.9; }
.section-image .wrap { max-width: 900px; }
.section-image .button { background: var(--white); color: var(--ink); }
.section-image .button:hover { background: var(--paper); color: var(--ink); }
.section-introduction .wrap { max-width: var(--narrow); }
.section-introduction h1 { font-size: clamp(1.9rem, 1.3rem + 2vw, 2.5rem); }
.section-what-we-do { padding-top: clamp(48px, 7vw, 96px) !important; }

.image-card { display: grid; grid-template-columns: 1fr 1fr; background: var(--white); align-items: stretch; }
.image-card-media img { width: 100%; height: 100%; object-fit: cover; }
.image-card-body { padding: clamp(28px, 5vw, 64px); align-self: center; }
.image-card-body h2 { color: var(--wine); font-size: clamp(1.8rem, 1.3rem + 1.5vw, 2.4rem); }
@media (max-width: 767px) { .image-card { grid-template-columns: 1fr; } }

/* Listing */
.meta { font: 400 .95rem/1.6 var(--serif); color: var(--muted); }
.meta a { color: inherit; }
.cards { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 440px), 1fr)); gap: clamp(28px, 4vw, 48px); }
.card { background: transparent; display: flex; flex-direction: column; }
.card-media { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: #111; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card-media img { transform: scale(1.03); }
.card-body { padding-top: 1.4rem; }
.card-body h2 { font-size: 1.6rem; margin-bottom: .4em; }
.card-body h2 a { text-decoration: none; }
.card-more a { font: 600 .85rem/1 var(--display); text-transform: uppercase; letter-spacing: .12em; color: var(--wine); }

/* Film pages */
.film-header { text-align: center; margin-bottom: 1rem; }
.film-header h1 { margin-bottom: .2em; }
.film .prose > h2:first-child:only-child, .film .prose > p:first-child:only-child { text-align: center; }
.film .wrap > .block:first-of-type h2 { text-align: center; }
.film-footer-meta { text-align: center; margin-top: 3rem; }
.pager { border-top: 1px solid var(--rule); padding: 40px 0 64px; background: var(--paper); }
.pager .wrap { display: flex; justify-content: space-between; gap: 24px; }
.pager a { text-decoration: none; font: 600 1.5rem/1.2 var(--display); display: flex; flex-direction: column; gap: 6px; }
.pager a span { font: 600 .8rem/1 var(--display); text-transform: uppercase; letter-spacing: .14em; color: var(--muted); }
.pager-next { text-align: right; margin-left: auto; }

/* Testimonials */
.kind-page .prose h2 { font-size: clamp(1.3rem, 1.05rem + 1vw, 1.75rem); line-height: 1.4; }
.kind-page .prose h1 + p, .kind-page .prose h1 { text-align: left; }

/* Contact */
.form label { display: block; font: 600 .95rem/1.4 var(--display); margin-bottom: 1.25rem; }
.form fieldset { border: 0; padding: 0; margin: 0 0 1.25rem; }
.form legend { font: 600 .95rem/1.4 var(--display); padding: 0; margin-bottom: .5rem; }
.form .req { font-weight: 400; color: var(--muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row label { font-weight: 400; font-size: .85rem; margin: 0; }
.form input:not([type=checkbox]), .form textarea {
  display: block; width: 100%; margin-top: .4rem; font: 400 1rem/1.5 var(--text); color: var(--ink);
  background: var(--white); border: 1px solid #a9adb3; border-radius: 3px; padding: 12px 14px;
}
.form input:focus, .form textarea:focus { border-color: var(--wine); outline: 2px solid var(--wine); outline-offset: 0; }
.form .check { display: flex; gap: 10px; align-items: flex-start; font-weight: 400; font-family: var(--text); }
.form .check input { width: 20px; height: 20px; margin-top: 4px; accent-color: var(--wine); flex: none; }
.form-hint { font-size: .95rem; margin-bottom: .5rem; }
.form .hp { position: absolute; left: -9999px; }
.form-status { padding: 14px 18px; margin-bottom: 1.5rem; border-left: 4px solid var(--wine); background: var(--white); }
.form-status.ok { border-color: #2d6a3e; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }

/* Footer */
.footer { background: var(--slate-deep); color: #e6e8eb; font-size: .95rem; line-height: 1.8; }
.footer a { color: inherit; }
.footer a:hover { color: var(--white); }
.footer-inner { max-width: var(--wrap); margin: 0 auto; padding: 64px var(--gutter) 32px; display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.footer strong { font-family: var(--display); font-weight: 600; }
.footer-copy { font: 600 1.05rem/1.4 var(--display); margin-top: 1.5rem; color: var(--white); }
.footer-nav h2 { font-size: 1.05rem; color: var(--white); margin-bottom: .75rem; }
.footer-nav ul { list-style: none; padding: 0; margin: 0; }
.footer-tagline { max-width: var(--wrap); margin: 0 auto; padding: 28px var(--gutter) 48px; text-align: center; color: #c5c9cf; font-size: .92rem; position: relative; }
.footer-tagline::before { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: min(560px, calc(100% - 2 * var(--gutter))); border-top: 1px solid rgba(255,255,255,.3); }
@media (max-width: 640px) { .footer-inner { grid-template-columns: 1fr; } }

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; } }

/* Awards: the laurels sit two to a row rather than in one long column. */
.page-awards .grid { display: block; }
.page-awards .col:has(> .image) { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr)); gap: 24px; }
.page-awards .col:has(> .image) .image { margin: 0; }
