:root {
  --ink: #17332e;
  --ink-soft: #35514b;
  --deep: #0d2925;
  --deep-raised: #153832;
  --sea: #1e7180;
  --sea-light: #dceced;
  --sun: #d9784a;
  --sand: #f1e7d4;
  --paper: #faf6ed;
  --white: #fffdf7;
  --line: rgba(23, 51, 46, 0.16);
  --shadow: 0 30px 80px rgba(13, 41, 37, 0.16);
  --display: "Iowan Old Style", "Palatino Linotype", Baskerville, Palatino, serif;
  --body: "Avenir Next", Avenir, "Century Gothic", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  line-height: 1.65;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 5% 8%, rgba(217, 120, 74, 0.12), transparent 28rem),
    linear-gradient(180deg, var(--white), var(--paper));
}

a {
  color: var(--sea);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--sun);
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--deep);
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.04;
}

h1 {
  max-width: 12ch;
  margin-bottom: 0;
  font-size: clamp(3.2rem, 7.2vw, 6.15rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 0.35rem;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

input,
select,
textarea,
button {
  font: inherit;
}

.shell {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 20;
  transform: translateY(-180%);
  padding: 0.75rem 1rem;
  background: var(--deep);
  color: var(--white);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(250, 246, 237, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: center;
  min-height: 4.8rem;
  padding-block: 0.65rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  width: fit-content;
  color: var(--deep);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.8rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--deep);
  color: var(--paper);
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.2;
}

.brand small {
  margin-top: 0.15rem;
  color: var(--ink-soft);
  font-size: 0.77rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.primary-nav {
  grid-column: 1 / -1;
  order: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.1rem;
  align-items: center;
}

.primary-nav a,
.language-switcher a {
  color: var(--ink);
  text-decoration: none;
}

.primary-nav a {
  color: var(--ink-soft);
  font-size: 0.83rem;
  font-weight: 700;
}

.language-switcher {
  justify-self: end;
  display: inline-flex;
  gap: 0.2rem;
  padding: 0.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.language-switcher a {
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  font-size: 0.82rem;
}

.language-switcher a[aria-current="page"] {
  background: var(--sea-light);
  color: var(--deep);
  font-weight: 700;
}

.button {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.25rem;
  border: 1px solid var(--deep);
  border-radius: 999px;
  background: var(--deep);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
  background: transparent;
  color: var(--deep);
}

.header-cta {
  display: none;
}

.hero {
  overflow: hidden;
  padding: clamp(3.5rem, 8vw, 7.5rem) 0 clamp(4rem, 8vw, 7rem);
}

.hero-grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.kicker {
  margin: 0 0 1rem;
  color: var(--sun);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lede {
  max-width: 43rem;
  margin-top: 1.5rem;
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  align-items: center;
  margin-top: 1.8rem;
}

.text-link {
  color: var(--deep);
  font-weight: 700;
}

.proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.4rem;
  margin: 2.2rem 0 0;
  padding: 1.15rem 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 700;
}

.proof-list li::before {
  content: "✦";
  margin-right: 0.5rem;
  color: var(--sun);
}

.hero-image,
.workspace-photo {
  position: relative;
  margin: 0;
}

.hero-image::before {
  content: "";
  position: absolute;
  top: -1rem;
  right: -1rem;
  z-index: -1;
  width: 42%;
  height: 70%;
  border: 1px solid var(--sun);
  border-radius: 14rem 14rem 0 0;
}

.hero-image img {
  display: block;
  width: 100%;
  min-height: clamp(21rem, 62vw, 36rem);
  border-radius: 16rem 16rem 0.4rem 0.4rem;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-image figcaption,
.workspace-photo figcaption {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  padding: 0.38rem 0.65rem;
  background: rgba(13, 41, 37, 0.82);
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.manifesto {
  display: grid;
  gap: 2rem;
  padding-block: clamp(4rem, 9vw, 8rem);
  border-top: 1px solid var(--line);
}

.manifesto h2 {
  max-width: 13ch;
}

.manifesto-copy {
  max-width: 38rem;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.manifesto-copy p:first-child::first-letter {
  float: left;
  margin: 0.05em 0.1em 0 0;
  color: var(--sun);
  font-family: var(--display);
  font-size: 4.2em;
  line-height: 0.75;
}

.workspace-section {
  padding-block: clamp(4rem, 9vw, 8rem);
  background: var(--deep);
  color: rgba(255, 253, 247, 0.8);
}

.workspace-grid {
  display: grid;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.workspace-section--offers .workspace-copy {
  order: -1;
}

.workspace-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.015;
  border-radius: 0.35rem;
  object-fit: cover;
  box-shadow: 1.2rem 1.2rem 0 rgba(217, 120, 74, 0.82);
}

.workspace-copy h2,
.workspace-copy h3 {
  color: var(--white);
}

.section-intro {
  max-width: 39rem;
  font-family: var(--display);
  font-size: 1.2rem;
}

.workspace-offers {
  display: grid;
  gap: 1px;
  margin-top: 2.2rem;
  padding: 1px;
  background: rgba(255, 253, 247, 0.22);
}

.workspace-offer {
  display: flex;
  min-height: 18rem;
  flex-direction: column;
  padding: clamp(1.3rem, 3vw, 2rem);
  background: var(--deep-raised);
}

.offer-heading {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.2rem;
}

.offer-heading p {
  margin: 0;
  color: var(--sun);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.offer-heading span {
  padding: 0.25rem 0.6rem;
  border: 1px solid rgba(255, 253, 247, 0.28);
  border-radius: 999px;
  color: rgba(255, 253, 247, 0.8);
  font-size: 0.68rem;
}

.workspace-offer h3 {
  max-width: 14ch;
  margin-bottom: 0.75rem;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.workspace-offer > p:last-child {
  margin: auto 0 0;
  padding-top: 1.2rem;
  color: rgba(255, 253, 247, 0.76);
}

.features-title {
  margin: 2.3rem 0 -1rem;
  color: rgba(255, 253, 247, 0.58);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.feature-list {
  margin-top: 2.3rem;
  border-top: 1px solid rgba(255, 253, 247, 0.18);
}

.feature-list article {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 0.8rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 253, 247, 0.18);
}

.feature-list article > span {
  color: var(--sun);
  font-family: var(--display);
  font-size: 0.85rem;
}

.feature-list p {
  margin: 0;
}

.location-section {
  padding-block: clamp(4rem, 9vw, 8rem);
}

.info-card {
  min-height: 27rem;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--line);
  background: var(--white);
}

.info-card h2 {
  max-width: 13ch;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.info-card p:last-child {
  max-width: 35rem;
  color: var(--ink-soft);
}

.location-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(rgba(30, 113, 128, 0.9), rgba(13, 41, 37, 0.92)),
    repeating-linear-gradient(45deg, transparent 0 24px, rgba(255, 255, 255, 0.07) 24px 25px);
}

.location-card h2,
.location-card p,
.location-card p:last-child {
  color: var(--white);
}

.location-card .office-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 253, 247, 0.22);
  font-size: 0.9rem;
}

.faq-section {
  display: grid;
  gap: 2rem;
  padding-bottom: clamp(5rem, 10vw, 9rem);
}

.faq-heading h2 {
  max-width: 10ch;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  color: var(--deep);
  font-family: var(--display);
  font-size: clamp(1.18rem, 2vw, 1.45rem);
}

.faq-list p {
  max-width: 42rem;
  margin: 0.9rem 0 0;
  color: var(--ink-soft);
}

.contact-section {
  padding-block: clamp(4rem, 9vw, 8rem);
  background: var(--sand);
}

.contact-grid {
  display: grid;
  gap: clamp(2.5rem, 7vw, 6rem);
}

.contact-copy h2 {
  max-width: 9ch;
}

.contact-copy > p:last-child {
  max-width: 34rem;
  color: var(--ink-soft);
}

.contact-form {
  display: grid;
  gap: 1.1rem;
  align-self: start;
  padding: clamp(1.25rem, 4vw, 2.4rem);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 60px rgba(13, 41, 37, 0.1);
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--deep);
  font-size: 0.84rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 0;
  border: 0;
  border-bottom: 1px solid rgba(23, 51, 46, 0.32);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--sea);
  outline: 2px solid transparent;
  box-shadow: 0 2px 0 var(--sea);
}

.contact-form .button {
  width: fit-content;
  margin-top: 0.5rem;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-message {
  min-height: 1.5em;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.form-message--success {
  color: var(--deep);
}

.form-message--error {
  color: #9d2d20;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.site-footer {
  background: var(--deep);
  color: rgba(255, 253, 247, 0.75);
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding-block: clamp(2.5rem, 6vw, 4rem);
}

.footer-brand,
.footer-cta {
  color: var(--white);
}

.footer-brand .brand-mark {
  background: var(--paper);
  color: var(--deep);
}

.footer-brand small {
  color: rgba(255, 253, 247, 0.65);
}

.footer-grid p {
  max-width: 38rem;
  margin: 0;
}

.footer-cta {
  width: fit-content;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  padding-block: 1rem;
  border-top: 1px solid rgba(255, 253, 247, 0.16);
  font-size: 0.8rem;
}

.not-found {
  min-height: 68vh;
  padding-block: clamp(5rem, 12vw, 10rem);
}

.not-found .button {
  margin-top: 1rem;
}

@media (min-width: 760px) {
  .header-inner {
    grid-template-columns: auto 1fr auto auto;
  }

  .primary-nav {
    grid-column: auto;
    order: initial;
    display: flex;
    gap: 1.25rem;
    justify-content: flex-end;
    padding: 0;
  }

  .primary-nav a {
    padding: 0;
    border: 0;
    font-size: 0.86rem;
    font-weight: 700;
  }

  .header-cta {
    display: inline-flex;
    min-height: 2.6rem;
    padding: 0.55rem 0.95rem;
    font-size: 0.84rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.06fr) minmax(20rem, 0.94fr);
  }

  .hero-image img {
    min-height: clamp(33rem, 52vw, 42rem);
  }

  .manifesto {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.8fr);
  }

  .workspace-grid {
    grid-template-columns: minmax(16rem, 0.8fr) minmax(0, 1.2fr);
  }

  .workspace-section--offers .workspace-grid {
    grid-template-columns: minmax(16rem, 0.68fr) minmax(0, 1.32fr);
  }

  .workspace-section--offers .workspace-copy {
    order: initial;
  }

  .faq-section,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 0.8fr 1.4fr auto;
  }
}

@media (min-width: 1040px) {
  .workspace-offers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .language-switcher {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .hero-actions .button,
  .contact-form .button {
    width: 100%;
  }

  .hero-image img {
    border-radius: 10rem 10rem 0.35rem 0.35rem;
  }

  .workspace-photo {
    margin-right: 1.2rem;
  }
}

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

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