:root {
  --teal: #18b9cd;
  --green: #8fd2a6;
  --yellow: #ffe061;
  --black: #111;
  --white-panel: rgb(255 255 255 / 55%);
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: 'DM Sans', sans-serif;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;

  background: linear-gradient(
    110deg,
    var(--teal) 0%,
    var(--green) 56%,
    var(--yellow) 100%
  );
}

/* Typography */

.logo,
.brand-heading {
  color: var(--black);
  font-family: 'Patrick Hand';
  letter-spacing: 0.08em;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

/* Navigation */

.site-nav {
  margin-bottom: 0;
  padding: 1rem 0;
  background: transparent;
  flex-shrink: 0;
}

.site-nav .navbar-item {
  color: #111;
  font-weight: 700;
}

.site-nav .navbar-item:hover,
.site-nav .navbar-item:focus {
  color: #111;
  background: transparent;
}

.navbar-brand .logo {
  padding-left: 0;
}

.navbar-burger {
  color: #111;
  background: rgb(255 255 255 / 75%);
  border: 2px solid #111;
  border-radius: 14px;
}

.navbar-burger:hover {
  background: white;
}

@media (max-width: 1023px) {
  .site-nav {
    padding-inline: 1rem;
  }

  .navbar-brand .logo {
    padding-left: 0;
  }

  .site-nav .navbar-menu {
    margin-top: 0.75rem;
    padding: 1rem;
    background: rgb(255 255 255 / 92%);
    border: 3px solid #111;
    border-radius: 20px;
    box-shadow: 6px 6px 0 #111;
  }

  .site-nav .navbar-end {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav .navbar-item {
    justify-content: center;
    text-align: center;
  }

  .site-nav .navbar-item .button {
    width: 100%;
  }
}

/* Buttons */

.button {
  color: var(--black);
  background: rgb(255 255 255 / 92%);
  border: 3px solid var(--black);
  border-radius: 999px;
  box-shadow: 5px 5px 0 var(--black);
  font-weight: 700;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}

.button:hover {
  color: var(--black);
  background: white;
  box-shadow: 3px 3px 0 var(--black);
  transform: translate(2px, 2px);
}

.button.is-dark,
.button.is-dark:hover {
  color: var(--black);
  background: white;
  border-color: var(--black);
}

/* Hero */

.hero {
  min-height: 100vh;
}

.hero > .container {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  width: 100%;
}

.hero-body {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
}

.hero-content {
  width: 100%;
  padding: 3rem 1.5rem 5rem;
  text-align: center;
}

.hero-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 5vw, 4rem);
}

.hero-title {
  margin: 0;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.9;
  text-align: right;
  text-transform: uppercase;
}

.brand-art {
  position: static;
  width: clamp(120px, 15vw, 200px);
  max-width: none;
  flex-shrink: 0;
  margin: 0;
  filter: drop-shadow(8px 8px 0 rgb(0 0 0 / 12%));
}

.hero-subtitle {
  margin: 1rem 0 0;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.hero-tagline {
  margin: 2rem auto 1rem;
  max-width: 700px;

  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  font-weight: 600;
  line-height: 1.4;

  text-align: center;
}

.hero-services {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;

  flex-wrap: wrap;

  margin-top: 1.5rem;

  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-services span:not(:last-child)::after {
  content: '•';
  margin-left: 1rem;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .hero-content {
    padding: 2rem 1rem 4rem;
  }

  .hero-lockup {
    flex-direction: column;
    gap: 1.25rem;
  }

  .hero-title {
    font-size: clamp(3.2rem, 15vw, 5rem);
    text-align: center;
  }

  .brand-art {
    width: min(140px, 50vw);
  }

  .hero-subtitle {
    margin-top: 1.5rem;
    font-size: 0.95rem;
  }

  .hero-services, .hero-subtitle {
    display: none;
  }
}

/* Main content */

.reading-width {
  max-width: 820px;
  margin-inline: auto;
  padding: 3rem;
  background: var(--white-panel);
  border-radius: 30px;
  backdrop-filter: blur(8px);
}

.reading-width h2 {
  margin-bottom: 2rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.reading-width p {
  font-size: 1.125rem;
  line-height: 1.8;
}

.reading-width p + p {
  margin-top: 1.5rem;
}

/* Testimonials */

.quote {
  height: 100%;
  padding: 1.75rem;
  background: rgb(255 255 255 / 78%);
  border: 3px solid var(--black);
  border-radius: 24px;
  box-shadow: 6px 6px 0 var(--black);
}

.quote strong {
  display: block;
  margin-top: 1rem;
}

/* Contact portrait */

.portrait img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 6px solid var(--black);
  border-radius: 50%;
  box-shadow: 8px 8px 0 rgb(0 0 0 / 18%);
}

/* Form controls */

.input,
.textarea {
  color: var(--black);
  background: rgb(255 255 255 / 90%);
  border: 3px solid var(--black);
  border-radius: 18px;
  box-shadow: none;
  transition:
    background 0.15s ease,
    box-shadow 0.15s ease;
}

.input:focus,
.textarea:focus {
  background: white;
  border-color: var(--black);
  box-shadow: 0 0 0 4px rgb(255 255 255 / 25%);
}

/* Mobile */

@media (max-width: 768px) {
  .reading-width {
    padding: 2rem;
  }
}
