:root {
  --deep: #1e3a54;
  --blue: #547b8a;
  --cream: #f4efe6;
  --paper: #fbf8f0;
  --tan: #b98a5e;
  --sand: #d3b991;
  --slate: #4f575c;
  --border: rgba(30, 58, 84, 0.22);
  --sans: Bahnschrift, "Segoe UI", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --script: "Segoe Script", "Brush Script MT", cursive;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--deep);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.topbar {
  display: grid;
  grid-template-columns: minmax(280px, 560px) 1fr;
  align-items: center;
  gap: 36px;
  padding: 22px clamp(22px, 5vw, 72px);
  background: var(--cream);
  border-bottom: 2px solid var(--deep);
}

.logo {
  display: block;
  width: min(520px, 100%);
}

.logo img {
  width: 100%;
}

.mobile-logo {
  display: none;
}

footer small {
  color: var(--slate);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

nav a {
  padding: 8px 0;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

nav a:hover,
nav a[aria-current="page"] {
  border-color: var(--tan);
}

.nav-cta,
.inline-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  width: 190px;
  border: 1px solid var(--deep);
  background: var(--deep);
  color: var(--cream);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-cta:hover,
.nav-cta[aria-current="page"],
.inline-cta:hover {
  border-color: var(--deep);
  background: var(--blue);
}

main {
  border-top: 4px solid var(--tan);
}

.hero,
.page-head,
.about-hero,
.catalogue-preview,
.two-column,
.area-section,
.request-layout,
.contact-banner {
  padding: clamp(48px, 7vw, 92px) clamp(22px, 5vw, 72px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.logo-panel {
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--border);
  background: var(--cream);
}

.eyebrow,
.tag {
  margin: 0 0 16px;
  color: var(--tan);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--deep);
  font-family: var(--serif);
  line-height: 1.05;
}

h1 {
  max-width: 1040px;
  font-size: clamp(3rem, 6.2vw, 5.65rem);
}

.single-word-title {
  font-size: clamp(5rem, 18vw, 12rem);
  line-height: 0.9;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
}

h3 {
  font-size: clamp(1.45rem, 2.6vw, 2.25rem);
}

.lede,
.page-head p,
.about-hero p,
.catalogue-cards p,
.service-list > article > p,
.two-column p,
.area-section p,
.info-panel p {
  color: var(--slate);
}

.privacy-note {
  max-width: 660px;
  margin: -6px 0 0;
  color: var(--slate);
  font-size: 0.9rem;
  line-height: 1.5;
}

.lede,
.page-head p,
.about-hero p {
  max-width: 760px;
  margin: 28px 0 0;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid var(--deep);
  border-radius: 2px;
  background: transparent;
  color: var(--deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.button.primary {
  background: var(--deep);
  color: var(--cream);
}

.spec-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: 1px solid var(--border);
}

.spec-band article {
  padding: clamp(30px, 5vw, 54px) clamp(22px, 5vw, 72px);
  border-right: 1px solid var(--border);
}

.spec-band article:last-child {
  border-right: 0;
}

.spec-band h2,
.service-heading h2,
.info-panel h2,
footer p {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) 1fr;
  gap: 32px;
  margin-bottom: 34px;
}

.catalogue-preview .section-head {
  display: block;
  text-align: center;
}

.catalogue-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--border);
}

.catalogue-cards article {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  padding: clamp(28px, 4vw, 44px);
  background: var(--cream);
  border-right: 1px solid var(--border);
}

.catalogue-cards article:last-child {
  border-right: 0;
}

.catalogue-cards a {
  display: inline-block;
  color: var(--deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-head,
.about-hero {
  border-bottom: 1px solid var(--border);
}

.about-hero,
.two-column,
.request-layout,
.service-list article {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(32px, 7vw, 96px);
}

.service-list article {
  padding: clamp(38px, 6vw, 72px) clamp(22px, 5vw, 72px);
  border-bottom: 1px solid var(--border);
}

.service-list article.recommended,
.service-list article.highlighted {
  background: rgba(211, 185, 145, 0.2);
}

.service-heading {
  display: grid;
  align-content: start;
  gap: 18px;
  max-width: 540px;
}

.service-list > article > p {
  max-width: 700px;
  margin: 0;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.two-column {
  border-bottom: 1px solid var(--border);
}

.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.two-column article,
.area-section,
.info-panel,
form {
  border: 1px solid var(--deep);
  background: var(--cream);
}

.two-column article,
.area-section,
.info-panel,
form {
  padding: clamp(26px, 4vw, 42px);
}

.area-section {
  margin: clamp(48px, 7vw, 92px) clamp(22px, 5vw, 72px);
  padding: clamp(34px, 5vw, 54px);
}

.area-section p {
  max-width: 980px;
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
}

.contact-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  background: var(--deep);
  color: var(--cream);
}

.contact-banner h2 {
  max-width: 980px;
  color: var(--cream);
}

.contact-banner .button {
  width: 190px;
  border-color: var(--cream);
  background: var(--cream);
  color: var(--deep);
}

.request-layout {
  align-items: start;
}

form {
  display: grid;
  gap: 24px;
}

.hidden-field {
  display: none;
}

label {
  display: grid;
  gap: 8px;
  color: var(--deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 0;
  border-bottom: 2px solid rgba(30, 58, 84, 0.34);
  border-radius: 0;
  padding: 12px 0;
  background: transparent;
  color: var(--deep);
  font: 1rem var(--sans);
  text-transform: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-color: var(--tan);
}

.consent-check {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  color: var(--slate);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.consent-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--deep);
}

.info-panel {
  display: grid;
  gap: 28px;
}

.info-panel article + article {
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.success-page .button {
  margin-top: 34px;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(22px, 5vw, 72px);
  background: var(--cream);
  border-top: 1px solid var(--border);
}

footer p {
  margin: 0 0 6px;
}

footer img {
  width: min(360px, 100%);
  margin-bottom: 10px;
}

@media (max-width: 980px) {
  .topbar,
  .hero,
  .section-head,
  .about-hero,
  .two-column,
  .request-layout,
  .service-list article,
  .contact-banner {
    grid-template-columns: 1fr;
  }

  nav {
    justify-content: space-between;
  }

  .topbar,
  .hero,
  .page-head,
  .about-hero,
  .section-head,
  .catalogue-preview,
  .spec-band article,
  .two-column,
  .two-column article,
  .area-section,
  .request-layout,
  .service-list article,
  .service-heading,
  .contact-banner,
  .info-panel,
  footer {
    text-align: center;
  }

  .logo,
  .logo-panel,
  .lede,
  .page-head p,
  .about-hero p,
  .section-head,
  .service-heading,
  .service-list > article > p,
  .area-section p,
  footer img {
    margin-left: auto;
    margin-right: auto;
  }

  .actions,
  .contact-banner,
  nav,
  footer {
    justify-content: center;
  }

  .inline-cta {
    justify-self: center;
  }

  .contact-banner .button {
    justify-self: center;
  }
}

@media (max-width: 680px) {
  .topbar,
  footer {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .topbar .logo {
    align-self: center;
  }

  .topbar .logo {
    width: min(360px, 86vw);
  }

  .desktop-logo {
    display: none;
  }

  .mobile-logo {
    display: block;
  }

  footer > div {
    width: 100%;
    text-align: center;
  }

  footer .logo,
  footer img {
    margin-left: auto;
    margin-right: auto;
  }

  nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 18px;
    font-size: 0.68rem;
  }

  .nav-cta {
    width: 190px;
    text-align: center;
  }

  h1 {
    font-size: clamp(2.4rem, 10vw, 3.6rem);
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .single-word-title {
    font-size: clamp(3rem, 16vw, 5.2rem);
  }

  .actions,
  .actions .button {
    width: 100%;
  }

  .spec-band,
  .catalogue-cards {
    grid-template-columns: 1fr;
  }

  .spec-band article,
  .catalogue-cards article {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .spec-band article:last-child,
  .catalogue-cards article:last-child {
    border-bottom: 0;
  }
}
