/* ==========================================================================
   Severn Group
   Values here are taken from the design handoff (brand-pack/…/README.md).
   Brand rules: sharp corners except the circular signet, no shadows, no
   gradients beyond the hero, palette fixed, all numbers set in the sans.
   ========================================================================== */

/* --- Fonts ---------------------------------------------------------------
   Cormorant Garamond is self-hosted as a variable font (weight 300–700) so
   the page makes no third-party requests and the display face is not gated
   behind a Google Fonts round trip. */

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* --- Tokens -------------------------------------------------------------- */

:root {
  --espresso: #2b2118;
  --espresso-deep: #231b12;
  --espresso-hover: #3a2c1d;
  --gold: #c9a45c;
  --gold-deep: #a8842f;
  --walnut: #7a5c38;
  --walnut-text: #5c4326;
  --ink-2: #3a2b18;
  --parchment: #ece1c8;
  --cream: #e8dcc4;
  --page: #f4efe6;

  --serif: 'Cormorant Garamond', Garamond, 'Times New Roman', serif;
  --sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --gutter: clamp(20px, 4vw, 48px);
  --section-y: clamp(64px, 9vw, 104px);
  --frame-inset: clamp(14px, 2vw, 26px);

  --hairline: rgba(122, 92, 56, 0.22);
  --hairline-soft: rgba(122, 92, 56, 0.18);
  --hairline-strong: rgba(122, 92, 56, 0.35);
  --on-dark: rgba(232, 220, 196, 0.78);
}

/* --- Reset --------------------------------------------------------------- */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* keep anchored sections clear of the sticky nav */
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
  color-scheme: light;
}

body {
  background: var(--page);
  color: var(--espresso);
  font-family: var(--serif);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

::selection {
  background: var(--gold);
  color: var(--espresso);
}

:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
}

/* --- Utilities ----------------------------------------------------------- */

.sans {
  font-family: var(--sans);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -120%);
  z-index: 100;
  background: var(--espresso);
  color: var(--page);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 12px 22px;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translate(-50%, 0);
}

.shell {
  max-width: 1200px;
  margin: 0 auto;
}

/* Decorative motifs. A diamond is a square turned 45°; a signet is a ring
   holding a Cormorant "S". */

.diamond {
  display: block;
  width: 4px;
  height: 4px;
  background: var(--gold);
  transform: rotate(45deg);
  flex: none;
}

.signet {
  border: 1.5px solid var(--gold-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.signet > span {
  font-family: var(--serif);
  line-height: 1;
  color: var(--gold-deep);
}

/* 1px gold border held inside the edge of a dark section */
.inset-frame {
  position: absolute;
  inset: var(--frame-inset);
  border: 1px solid rgba(201, 164, 92, 0.22);
  pointer-events: none;
}

.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 16px;
}

.section-head {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.section-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 4.5vw, 50px);
  line-height: 1.1;
}

.body-copy {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.85;
  font-weight: 300;
  color: var(--walnut-text);
}

/* Text link with a gold rule under it */
.rule-link {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border-bottom: 1px solid rgba(168, 132, 47, 0.5);
  padding-bottom: 3px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.rule-link:hover {
  color: var(--espresso);
  border-bottom-color: var(--espresso);
}

.rule-link--on-dark {
  color: var(--gold);
  border-bottom-color: rgba(201, 164, 92, 0.5);
}

.rule-link--on-dark:hover {
  color: var(--cream);
  border-bottom-color: var(--cream);
}

/* Solid espresso button */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--page);
  background: var(--espresso);
  border: 1px solid var(--espresso);
  padding: 16px 34px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  background: var(--espresso-hover);
  border-color: var(--espresso-hover);
}

.btn--gold {
  color: var(--espresso);
  background: var(--gold);
  border-color: var(--gold);
  padding: 15px 30px;
}

.btn--gold:hover {
  background: var(--cream);
  border-color: var(--cream);
}

.btn--compact {
  padding: 11px 20px;
  letter-spacing: 0.22em;
}

/* --- Scroll reveal -------------------------------------------------------
   The hiding rule is scoped to html.reveal-ready, a class set by a small
   inline script in the head. With scripting unavailable, or with reduced
   motion requested, nothing is ever hidden, so every crawler and reader
   gets the full page. */

[data-reveal] {
  transition: opacity 0.85s ease, transform 0.85s ease;
}

html.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
}

html.reveal-ready [data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

/* --- Nav ----------------------------------------------------------------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 239, 230, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline-soft);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.lockup .signet {
  width: 42px;
  height: 42px;
}

.lockup .signet > span {
  font-weight: 500;
  font-size: 26px;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 9px;
}

.wordmark__severn {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 23px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wordmark__group {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
}

.navlink {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-2);
  transition: color 0.2s ease;
}

.navlink:hover {
  color: var(--gold-deep);
}

/* --- Hero ---------------------------------------------------------------- */

.hero {
  position: relative;
  background: var(--espresso);
  background-image: linear-gradient(180deg, var(--espresso-hover) 0%, var(--espresso) 55%);
  color: var(--cream);
  padding: clamp(72px, 10vw, 118px) var(--gutter) clamp(84px, 11vw, 130px);
  overflow: hidden;
}

.hero__watermark {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-weight: 500;
  font-size: 640px;
  line-height: 0.7;
  color: rgba(201, 164, 92, 0.05);
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
}

.hero__inner {
  position: relative;
  max-width: 1060px;
  margin: 0 auto;
  text-align: center;
}

.hero__eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(10px, 1.2vw, 12px);
  letter-spacing: 0.56em;
  text-transform: uppercase;
  color: var(--gold);
  text-indent: 0.56em;
  margin-bottom: clamp(26px, 4vw, 40px);
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(42px, 6.5vw, 84px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.hero h1 em {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.hero__sub {
  font-family: var(--sans);
  max-width: 560px;
  margin: 34px auto 0;
  font-size: 15px;
  line-height: 1.85;
  font-weight: 300;
  color: var(--on-dark);
}

.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 46px;
  flex-wrap: wrap;
}

/* --- Statement ----------------------------------------------------------- */

.statement {
  max-width: 980px;
  margin: 0 auto;
  padding: var(--section-y) var(--gutter);
  text-align: center;
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 34px;
}

.ornament i {
  display: block;
  width: 48px;
  height: 1px;
  background: rgba(122, 92, 56, 0.5);
}

.ornament .diamond {
  width: 7px;
  height: 7px;
}

.statement p {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.45;
  letter-spacing: 0.005em;
  text-wrap: balance;
  color: var(--espresso);
}

.statement em {
  font-style: italic;
  color: var(--gold-deep);
}

/* --- Atmosphere band ----------------------------------------------------- */

.atmosphere {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gutter) var(--section-y);
}

.framed {
  position: relative;
  width: 100%;
  border: 1px solid rgba(122, 92, 56, 0.25);
  padding: 10px;
  background: var(--parchment);
}

.atmosphere .framed {
  height: clamp(260px, 38vw, 440px);
}

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

.caption {
  font-family: var(--sans);
  margin-top: 14px;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(122, 92, 56, 0.6);
}

/* --- Practice ------------------------------------------------------------ */

.band-parchment {
  background: var(--parchment);
  padding: var(--section-y) var(--gutter);
}

/* The 1px grid gap over a hairline-coloured backing draws the dividers
   between cards, so no card needs its own border. */
.practice__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}

.practice__card {
  background: var(--page);
  padding: clamp(32px, 4vw, 48px) clamp(28px, 3.5vw, 44px);
}

.numeral {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--gold-deep);
  margin-bottom: 14px;
}

.practice__card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 14px;
}

/* --- Approach ------------------------------------------------------------ */

.approach {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--section-y) var(--gutter);
}

.approach__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.approach h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 4.5vw, 50px);
  line-height: 1.12;
  text-wrap: balance;
}

.principles {
  display: flex;
  flex-direction: column;
  gap: 30px;
  list-style: none;
}

.principles li {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.principles li:not(:last-child) {
  border-bottom: 1px solid rgba(122, 92, 56, 0.2);
  padding-bottom: 26px;
}

.principles__n {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
  flex: none;
  width: 40px;
}

.principles h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 23px;
  margin-bottom: 6px;
}

.principles .body-copy {
  line-height: 1.8;
}

/* --- Engagement process -------------------------------------------------- */

.process__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(28px, 4vw, 52px);
  list-style: none;
}

.process__step {
  text-align: center;
  padding: 0 8px;
}

.process__step .signet {
  width: 58px;
  height: 58px;
  margin: 0 auto 22px;
}

.process__step .signet > span {
  font-style: italic;
  font-size: 24px;
}

.process__step h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 26px;
  margin-bottom: 12px;
}

/* --- The principal ------------------------------------------------------- */

.principal {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--section-y) var(--gutter);
}

.principal__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}

.principal__portrait {
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
}

.principal__portrait .framed {
  aspect-ratio: 4 / 5;
  border-color: rgba(122, 92, 56, 0.3);
}

.principal h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 4.5vw, 50px);
  line-height: 1.1;
  margin-bottom: 8px;
}

.principal__role {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--walnut);
  margin-bottom: 24px;
}

.principal p {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.9;
  font-weight: 300;
  color: var(--walnut-text);
  margin-bottom: 18px;
}

.principal p:last-of-type {
  margin-bottom: 32px;
}

/* --- Selected work ------------------------------------------------------- */

.work {
  position: relative;
  background: var(--espresso);
  color: var(--cream);
  padding: var(--section-y) var(--gutter);
  overflow: hidden;
}

.work .inset-frame {
  border-color: rgba(201, 164, 92, 0.16);
}

.work__inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.work .eyebrow {
  color: var(--gold);
}

.work .section-head {
  margin-bottom: clamp(40px, 6vw, 60px);
}

.work .section-head h2 {
  color: var(--cream);
}

.work__card {
  background: var(--espresso-deep);
  border: 1px solid rgba(201, 164, 92, 0.28);
  padding: clamp(36px, 5vw, 60px) clamp(28px, 4.5vw, 56px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(32px, 4.5vw, 56px);
  align-items: center;
}

.work__client {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 46px;
  letter-spacing: 0.04em;
  color: var(--cream);
  line-height: 1;
}

.work__label {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 14px;
}

.work__rule {
  width: 44px;
  height: 1px;
  background: rgba(201, 164, 92, 0.5);
  margin-top: 26px;
}

.work__copy {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(21px, 2.4vw, 26px);
  line-height: 1.5;
  color: rgba(232, 220, 196, 0.92);
  text-wrap: pretty;
}

.work .rule-link {
  display: inline-block;
  margin-top: 28px;
}

/* --- Contact ------------------------------------------------------------- */

.contact {
  background: var(--parchment);
  padding: clamp(64px, 9vw, 108px) var(--gutter);
}

.contact__inner {
  max-width: 680px;
  margin: 0 auto;
}

.contact__head {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 52px);
}

.contact__head .signet {
  width: 60px;
  height: 60px;
  margin: 0 auto 30px;
}

.contact__head .signet > span {
  font-weight: 500;
  font-size: 38px;
}

.contact__head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(38px, 5vw, 54px);
  line-height: 1.1;
  margin-bottom: 20px;
  text-wrap: balance;
}

.contact__sub {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.85;
  font-weight: 300;
  color: var(--walnut-text);
  max-width: 480px;
  margin: 0 auto;
}

.enquiry {
  background: var(--page);
  border: 1px solid rgba(122, 92, 56, 0.25);
  padding: clamp(28px, 4vw, 48px);
}

.enquiry__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 26px;
  margin-bottom: 26px;
}

.field {
  margin-bottom: 26px;
}

.field--last {
  margin-bottom: 34px;
}

.enquiry label {
  display: block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 2px;
}

input,
textarea {
  font-family: var(--sans);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--hairline-strong);
  border-radius: 0;
  padding: 12px 2px;
  font-size: 14px;
  color: var(--espresso);
  outline: none;
  width: 100%;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-bottom-color: var(--gold-deep);
}

input::placeholder,
textarea::placeholder {
  color: rgba(92, 67, 38, 0.5);
  font-weight: 300;
}

.enquiry__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.enquiry__direct {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--walnut);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.enquiry__direct:hover {
  border-bottom-color: var(--walnut);
}

.enquiry__note {
  font-family: var(--sans);
  margin-top: 18px;
  font-size: 11px;
  line-height: 1.7;
  color: rgba(92, 67, 38, 0.55);
  font-weight: 300;
  min-height: 1em;
}

/* --- Footer -------------------------------------------------------------- */

.footer {
  background: var(--espresso);
  color: rgba(232, 220, 196, 0.7);
  padding: 54px var(--gutter);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer .wordmark {
  gap: 13px;
}

.footer .wordmark__severn {
  font-size: 22px;
  color: var(--cream);
}

.footer .wordmark__group {
  color: var(--gold);
}

.footer__contact {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.9;
  text-align: center;
  font-style: normal;
}

.footer__contact a {
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.footer__contact a:hover {
  border-bottom-color: currentColor;
}

.footer__registry {
  color: rgba(232, 220, 196, 0.45);
}

.footer__est {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(201, 164, 92, 0.7);
}

/* --- 404 ----------------------------------------------------------------- */

.notfound {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--section-y) var(--gutter);
}

.notfound .signet {
  width: 60px;
  height: 60px;
  margin-bottom: 30px;
}

.notfound .signet > span {
  font-weight: 500;
  font-size: 38px;
}

.notfound h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 4.5vw, 50px);
  line-height: 1.1;
  margin-bottom: 18px;
}

.notfound p {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.85;
  font-weight: 300;
  color: var(--walnut-text);
  max-width: 440px;
  margin: 0 auto 34px;
}

/* --- Responsive ---------------------------------------------------------- */

@media (max-width: 760px) {
  /* Per the design: below 760px the nav keeps only the mark and Enquire. */
  .navlink {
    display: none;
  }

  .hero__watermark {
    font-size: 420px;
    right: -110px;
  }

  .work__client {
    font-size: 38px;
  }
}

@media (max-width: 420px) {
  /* At iPhone-mini widths the lockup and the Enquire button are a few pixels
     wider than the gutter allows, so tighten the mark rather than let the page
     scroll sideways. */
  .lockup {
    gap: 11px;
  }

  .lockup .signet {
    width: 38px;
    height: 38px;
  }

  .lockup .signet > span {
    font-size: 23px;
  }

  .wordmark {
    gap: 7px;
  }

  .wordmark__severn {
    font-size: 20px;
  }

  .wordmark__group {
    font-size: 9px;
    letter-spacing: 0.28em;
  }

  .btn--compact {
    padding: 11px 15px;
    letter-spacing: 0.16em;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  html.reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* --- Print --------------------------------------------------------------- */

@media print {
  .nav,
  .hero__watermark,
  .inset-frame,
  .enquiry,
  .skip-link {
    display: none !important;
  }

  html.reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }

  body {
    background: #fff;
    color: #000;
  }

  .hero,
  .work,
  .footer {
    background: #fff !important;
    color: #000 !important;
  }
}
