/* Concepture.com — shared styles */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Nunito:wght@300;400&display=swap');

:root {
  --color-bg: #edf6fd;
  --color-text: #000000;
  --color-heading-blue: #6CB7E4;
  --color-muted: rgba(0, 0, 0, 0.25);
  --color-btn-bg: #000000;
  --color-btn-text: #ffffff;
  --color-footer-bg: #F0E2BC;
  --color-hero-box: rgba(255, 255, 255, 0.8);
  --color-white: #ffffff;
  --color-bildr-bg: #f8f8f8;
  --color-focus: #6CB7E4;
}

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

body {
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--color-text);
  background: var(--color-bg);
}

/* Shared heading base */
.heading-base {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

/* Container width utilities */
.container-wide {
  max-width: 1200px;
  margin: 0 auto;
}

.container-mid {
  max-width: 1100px;
  margin: 0 auto;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 32px;
}

/* Shared section padding */
.section-pad {
  padding: 4em 2em;
}

/* ── Navigation ── */

.site-header {
  background: transparent;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
}

.nav-logo img {
  display: block;
  height: 90px;
  width: auto;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-dropdown {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a,
.nav-email {
  font-family: 'Nunito', sans-serif;
  font-weight: 300;
  font-size: 0.8em;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px dotted currentColor;
  padding-bottom: 2px;
}

.nav-email::before {
  content: "✉ ";
}

.nav-links a:hover,
.nav-email:hover {
  opacity: 0.7;
}

.nav-links a[aria-current="page"] {
  opacity: 0.7;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 4px 8px;
}

@media (max-width: 850px) {
  .site-nav {
    align-items: center;
    position: relative;
  }

  .nav-toggle {
    display: block;
  }

  .nav-email {
    display: none;
  }

  .nav-links {
    display: flex;
  }

  .nav-dropdown {
    display: none;
    position: absolute;
    top: 80px;
    right: 16px;
    background: var(--color-bg);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    border-radius: 8px;
    z-index: 200;
    min-width: 180px;
    padding: 16px;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
  }

  .nav-dropdown.is-open {
    display: flex;
  }

  .nav-dropdown .nav-links {
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    padding: 0;
  }

  .nav-dropdown .nav-email {
    display: block;
    border-top: 1px dotted rgba(0,0,0,0.15);
    padding-top: 12px;
    width: 100%;
    text-align: right;
  }
}

/* ── Footer ── */

.site-footer {
  min-height: 40vh;
  overflow: auto;
  background-color: black;
  color: white;
  padding-left: 1em;
  padding-right: 1em;
  padding-top: 40vh;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto 6em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  max-width: 200px;
}

.footer-contact a {
  color: white;
  text-decoration: none;
  font-family: 'Nunito', sans-serif;
  font-size: 1em;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* ── Buttons ── */

.btn {
  display: inline-block;
  width: fit-content;
  background: var(--color-btn-bg);
  color: var(--color-btn-text);
  border-radius: 6px;
  padding: 13px 24px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn:hover {
  opacity: 0.85;
}

/* ── Hero ── */

.hero {
  position: relative;
  height: 50vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-box {
  position: relative;
  z-index: 200;
  background: var(--color-hero-box);
  padding: 21.6px 43.2px;
  text-align: left;
  border-left: 2px solid #000;
}

.hero-h1 {
  font-size: 48.6px;
  line-height: 1.1;
}

.hero-h1--blue {
  color: var(--color-heading-blue);
}

.hero-h1--black {
  color: var(--color-text);
}

.hero-sub {
  font-style: italic;
  font-size: 0.75em;
  opacity: 0.8;
  background: var(--color-white);
  display: block;
  text-align: right;
  padding: 4px 12px;
  border-radius: 999px;
  margin-top: 8px;
}

.ticks {
  position: absolute;
  left: 50%;
  top: -2vh;
  width: 100%;
  height: calc(50vh + 2vh);
  background-image: url('assets/images/tick-marks.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.4;
  z-index: 100;
  transform: translateX(-50%);
}

.ticks1 {
  filter: brightness(0) saturate(100%) invert(71%) sepia(77%) saturate(427%) hue-rotate(357deg) brightness(84%) contrast(95%);
  animation: ticks1 4s infinite alternate ease;
}

.ticks2 {
  filter: brightness(0) saturate(100%) invert(52%) sepia(56%) saturate(598%) hue-rotate(153deg) brightness(98%) contrast(84%);
  animation: ticks2 4s infinite alternate ease;
}

.ticks3 {
  filter: invert(0) brightness(0.85);
  animation: ticks3 4s infinite alternate ease;
}

@keyframes ticks1 {
  0%   { transform: translateX(-25%) translateY(-6%) scale(0.45) rotate(-10deg); }
  10%  { transform: translateX(-25%) translateY(-6%) scale(0.45) rotate(-10deg); }
  90%  { transform: translateX(-35%) translateY(6%) scale(1.1) rotate(45deg); }
  100% { transform: translateX(-35%) translateY(6%) scale(1.1) rotate(45deg); }
}

@keyframes ticks2 {
  0%   { transform: translateX(-25%) translateY(-6%) scale(0.45) rotate(-10deg); }
  10%  { transform: translateX(-25%) translateY(-6%) scale(0.45) rotate(-10deg); }
  90%  { transform: translateX(-35%) translateY(6%) scale(2) rotate(30deg); }
  100% { transform: translateX(-35%) translateY(6%) scale(2) rotate(30deg); }
}

@keyframes ticks3 {
  0%   { transform: translateX(-25%) translateY(-6%) scale(0.45) rotate(-10deg); }
  10%  { transform: translateX(-25%) translateY(-6%) scale(0.45) rotate(-10deg); }
  90%  { transform: translateX(-35%) translateY(6%) scale(1.6) rotate(15deg); }
  100% { transform: translateX(-35%) translateY(6%) scale(1.6) rotate(15deg); }
}

@media (max-width: 640px) {
  .hero-h1 {
    font-size: 32px;
  }
}

/* ── Social proof ── */

.social-proof {
  position: relative;
  overflow: hidden;
  padding: 60px 32px;
  background: var(--color-bg);
}

.social-proof-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4em;
  align-items: start;
}

.social-proof-left {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.glass-move {
  position: absolute;
  top: 0;
  border-radius: 50%;
  background: rgba(108, 183, 228, 0.15);
  animation: glassMove 20s alternate infinite;
}

.glass-move--1 {
  right: 0;
  width: 100px;
  height: 100px;
  transform: translate(50%, -50%);
}

.glass-move--2 {
  right: 0;
  top: -100px;
  width: 200px;
  height: 120px;
  transform: translate(-50%, -50%);
  animation: glassMove 26s alternate infinite;
}

@keyframes glassMove {
  0%   { transform: translate(-100%, -50%); }
  100% { transform: translate(100%, -50%); }
}

.section-heading {
  font-size: 1.5em;
  margin: 1em 0;
}

.highlight-bg {
  background-color: white;
}

.section-subheading {
  font-size: 1.25em;
  margin: 1em 0;
}

.social-proof-desc {
  line-height: 1.6;
}

.social-proof-right {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.work-section-label {
  font-size: 0.6em;
  font-family: 'Nunito', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-muted);
  margin: 0 0 0.5em;
}

.work-grid-featured {
  margin-bottom: 2em;
}

.work-card {
  background-color: transparent;
  border-left: 2px solid black;
  border-radius: 0;
  padding: 1em;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
}

a.work-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

a.work-card:hover {
  opacity: 0.85;
}

.work-card--featured {
  padding: 2em;
  max-width: 800px;
}

.work-card-logo {
  max-width: 250px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.work-card--featured .work-card-logo {
  max-width: 250px;
}

.work-card-label {
  font-size: 0.6em;
  font-family: 'Nunito', sans-serif;
  position: absolute;
  top: 100%;
  margin: 0.25em 0 0;
  color: var(--color-muted);
}

.work-grid-more {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 1em;
  margin-top: 1.5em;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 850px) {
  .social-proof-inner {
    grid-template-columns: 1fr;
  }

  .work-grid-more {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Bildr section ── */

.bildr-section {
  margin: 20vh 0 10vh;
  position: relative;
  background-image: linear-gradient(to left, #f0e2bc 50%, rgba(0,0,0,0) 50%);
}

/* Shared decorative wedge base */
.section-wedge {
  position: absolute;
  left: 0;
  width: 100%;
}

.bildr-triangle--top {
  clip-path: polygon(0% 100%, 100% 100%, 100% 0%);
  background-image: linear-gradient(to left, #f0e2bc 50%, rgba(0,0,0,0) 50%);
  height: 20vh;
  top: 0;
  transform: translateY(calc(-100% + 1px));
}

.bildr-triangle--bottom {
  clip-path: polygon(0% 0%, 0% 100%, 100% 0%);
  background-image: linear-gradient(to left, #f0e2bc 50%, rgba(0,0,0,0) 50%);
  height: 20vh;
  top: 100%;
  transform: translateY(-1px);
}

.bildr-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.bildr-logo-col {
  display: grid;
  place-items: center;
  padding: 20%;
}

.bildr-logo {
  width: 100%;
  height: auto;
}

.bildr-text-col {
  max-width: 50ch;
}

.bildr-heading {
  font-size: 1.5em;
  margin-bottom: 0.75em;
}

.bildr-lead {
  font-weight: 600;
  margin-bottom: 1em;
}

.bildr-text-col p {
  line-height: 1.6;
  margin-bottom: 1em;
}

@media (max-width: 850px) {
  .bildr-inner {
    grid-template-columns: 1fr;
  }
  .bildr-logo-col {
    padding: 10%;
  }
}

/* ── Common Systems ── */

.common-systems {
  padding: 4em 2em 8em;
  position: relative;
  overflow: hidden;
}

.cs-blue-shape {
  position: absolute;
  background-color: rgba(108, 183, 228, 1);
  width: 42%;
  height: 60vh;
  top: 20%;
  left: 0;
  clip-path: polygon(0% 0%, 0% 100%, 100% calc(100% - 10vh), 100% 10vh);
}

.cs-deco-img {
  position: absolute;
  border-left: 2px solid;
}

/* Shared whiteboard background */
.wb-bg {
  background-image: url('assets/images/whiteboard-drawing.png');
  background-attachment: fixed;
  background-size: cover;
}

.cs-deco-img--small {
  width: 12vh;
  height: 12vh;
  bottom: calc(40% + 40vh);
  right: 25%;
}

.cs-deco-img--large {
  width: 24%;
  height: 40vh;
  bottom: 20%;
  right: 0;
}

.common-systems-inner {
  max-width: 70ch;
  position: relative;
  margin: 0 auto;
}

.common-systems-heading {
  font-size: 1.25em;
  text-align: center;
  margin-bottom: 2em;
}

.systems-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.system-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2em;
  margin-bottom: 2em;
}

/* Alternating layout: even items swap title and description columns */
.system-item--alt .system-item-title-col {
  order: 2;
}

.system-item--alt .system-item-desc-col {
  order: 1;
}

.system-item-title {
  font-size: 1em;
  text-align: center;
  border-bottom: 6px solid #eeeeee;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0.5em;
  padding-top: 0.5em;
}

.system-item-desc-col p {
  line-height: 1.6;
  margin-bottom: 0.5em;
}

@media (max-width: 850px) {
  .system-item {
    grid-template-columns: 1fr;
    gap: 0.5em;
  }

  .system-item--alt .system-item-title-col,
  .system-item--alt .system-item-desc-col {
    order: unset;
  }

  .cs-blue-shape,
  .cs-deco-img {
    display: none;
  }
}

/* ── Industries We Know ── */

.industries {
  padding: 4em 2em 8em;
}

.industries-inner {
  max-width: 900px;
  margin: 0 auto;
}

.industries-heading {
  font-size: 1.5em;
  text-align: center;
  margin-bottom: 1.5em;
}

.industries-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1em;
}

.industry-item {
  background-color: rgba(255, 255, 255, 0.6);
  border-left: 4px solid #333;
  padding: 1em 1.25em;
  font-family: 'Nunito', sans-serif;
  font-size: 1em;
  font-weight: 600;
  display: flex;
  align-items: center;
}

@media (max-width: 650px) {
  .industries-list {
    grid-template-columns: 1fr;
  }
}

/* ── CTA Banner ── */

.cta-banner {
  position: relative;
  background-color: #f0e2bc;
  color: white;
  margin-top: 20vh;
}

.cta-banner-top-shape {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 10vh;
  background-color: #f0e2bc;
  clip-path: polygon(0% 100%, 100% 100%, 100% 0%);
  transform: translateY(1px);
}

.cta-banner-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
}

.cta-banner-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2em;
}

.cta-banner-heading {
  font-size: 1.8em;
  color: white;
  flex: 1;
}

.btn-cta {
  padding: 1em 2em;
  font-size: 1.2em;
  font-family: 'Montserrat', sans-serif;
}

.cta-banner-bottom-tan {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 40vh;
  background-color: #f0e2bc;
  clip-path: polygon(0% 0%, 100% 50%, 100% 0%);
  transform: translateY(-1px);
}

.cta-banner-bottom-blue {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 40vh;
  background-color: rgba(108, 183, 228, 0.8);
  clip-path: polygon(0% 0%, 100% 80%, 100% 40%);
  transform: translateY(-1px);
}

@media (max-width: 650px) {
  .cta-banner-content {
    flex-direction: column;
    text-align: center;
  }
}

/* ── Inner pages (About, Process, Contact) ── */

.page-main {
  padding-top: 80px;
}

.page-title {
  font-size: 40px;
  margin-bottom: 16px;
}

.page-intro {
  margin-bottom: 48px;
}

.page-intro p {
  font-size: 20px;
  line-height: 1.6;
  max-width: 40ch;
}

.about-section {
  padding-top: 10vh;
  position: relative;
}

.about-inner {
  position: relative;
}

.about-sq-wide {
  position: absolute;
  right: 1em;
  top: 0;
  width: 10em;
  height: 4em;
  background-color: rgba(108, 183, 228, 1);
}

.about-sq-sm {
  position: absolute;
  right: 0;
  top: -1em;
  width: 2em;
  height: 2em;
  background-color: #f0e2bc;
}

.about-content {
  max-width: 100ch;
  margin-left: auto;
  margin-right: auto;
  margin-top: -10vh;
  padding: 4em;
  display: grid;
  column-gap: 1em;
  grid-template-columns: 2fr 1fr;
}

.about-subheading {
  margin-bottom: 0;
}

.about-content p {
  margin-bottom: 1em;
  line-height: 1.6;
}

.about-content a {
  color: var(--color-heading-blue);
}

/* ── About capture banner ── */
.about-capture {
  height: 60vh;
  background-image: url('assets/images/concepture-capture.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  clip-path: polygon(0% 10%, 100% 10%, 100% 60%, 0% 100%);
  filter: blur(10px) brightness(1.2);
}

/* ── Landry & Arcari iframe section ── */
.la-section {
  display: grid;
  place-items: center;
  min-height: 60vh;
}

.la-inner {
  max-width: 600px;
  width: 100%;
  padding: 2em;
}

.la-inner h2 {
  margin-bottom: 1em;
}

.la-iframe {
  width: 100%;
  min-height: 500px;
  border: none;
  display: block;
}

/* ── Choices Flooring Case Study ── */

/* Section 1 — Hero */
.cs-hero {
  padding: 0 2em 4em;
}

.cs-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.cs-bos-logo {
  max-width: 240px;
  display: block;
  margin: 4em auto 2em;
}

.cs-hero-title {
  font-size: 2.6em;
  color: #6cb7e4;
  margin-bottom: 0.25em;
}

.cs-hero-subtitle {
  font-size: 1.2em;
  margin-top: -0.75em;
  margin-bottom: 2em;
}

.cs-hero-cols {
  display: flex;
  justify-content: center;
  gap: 2em;
  text-align: left;
}

.cs-col-heading {
  font-size: 1em;
  margin-bottom: 0.5em;
}

.cs-col-text {
  max-width: 30ch;
  line-height: 1.6;
}

/* Section 2 & 4 — Quote */
.cs-quote-section {
  position: relative;
  margin-top: 4em;
  margin-bottom: 6em;
  min-height: clamp(300px, 70vh, 800px);
  overflow: hidden;
}

.cs-blue-panel {
  position: absolute;
  background-color: rgba(108, 183, 228, 1);
  width: 63%;
  height: 100%;
  top: 0;
  right: 0;
  clip-path: polygon(0% 5vh, 0% calc(100% - 5vh), 100% 100%, 100% 0%);
}

.cs-quote-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: 4em 2em 3em;
  text-align: center;
}

.cs-quote-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid #aaa;
  font-size: 2em;
  color: #555;
  margin-bottom: 1em;
  background: var(--color-bg, #f0f4f8);
}

.cs-quote-text {
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 2em;
  text-align: center;
}

.cs-quote-attribution {
  display: inline-flex;
  align-items: center;
  gap: 0.75em;
  text-align: left;
}

.cs-quote-logo {
  height: 40px;
  width: auto;
  flex-shrink: 0;
}

.cs-quote-source {
  font-size: 0.9em;
  line-height: 1.4;
  margin: 0;
}

.cs-quote-source--bold {
  font-weight: 700;
}

/* Section 3 — Components */
.cs-components {
  padding: 4em 2em;
}

.cs-components-inner {
  max-width: 900px;
  margin: 0 auto;
}

.cs-components-heading {
  text-align: center;
  font-size: 1.5em;
  margin-bottom: 2em;
}

.cs-components-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2em;
}

.cs-component-item p {
  line-height: 1.6;
  margin-top: 0.5em;
}

.cs-component-title {
  font-size: 1em;
  text-indent: -0.8em;
  padding-left: 0.8em;
}

@media (max-width: 850px) {
  .cs-hero-cols {
    flex-direction: column;
    align-items: center;
  }

  .cs-components-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Bildr process section ── */

.process {
  background-image: linear-gradient(to left, #dddddd 50%, rgba(0, 0, 0, 0) 50%);
  position: relative;
  margin-bottom: 40vh;
}

.process-top {
  height: 20vh;
  background-image: linear-gradient(to left, #dddddd 50%, rgba(0, 0, 0, 0) 50%);
  clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
  transform: translateY(calc(-100% + 1px));
}

.process-bottom {
  top: 100%;
  height: 20vh;
  background-image: linear-gradient(to left, #dddddd 50%, rgba(0, 0, 0, 0) 50%);
  clip-path: polygon(0% 100%, 100% 0%, 0% 0%);
  transform: translateY(-1px);
}

.process-inner {
  position: relative;
}

.process-sq-lg,
.process-sq-md,
.process-sq-sm {
  position: absolute;
  background-color: rgba(108, 183, 228, 1);
}

.process-sq-lg {
  top: 0;
  right: 0;
  width: 4em;
  height: 4em;
}

.process-sq-md {
  top: 6em;
  right: 6em;
  width: 2em;
  height: 2em;
}

.process-sq-sm {
  top: 0;
  right: 8em;
  width: 1em;
  height: 1em;
}

.process-content {
  position: relative;
  padding: 4em;
  margin-left: auto;
}

.process-steps {
  position: relative;
  margin-top: 4em;
  margin-bottom: 4em;
}

.process-wb {
  position: absolute;
  right: calc(100% + 1em);
  top: 0;
  width: 25%;
  height: 100%;
  background-position: center;
}

.process-step {
  display: grid;
  grid-template-columns: 4em 1fr;
  align-items: center;
  padding: 0.5em 0;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.2);
  margin-bottom: 0.5em;
}

.process-step--last {
  border-bottom: none;
}

.process-step-num {
  font-size: 1.5em;
  border: 2px solid currentColor;
  border-radius: 50%;
  width: 1.8em;
  height: 1.8em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step p {
  font-weight: 500;
}

.process-closing {
  max-width: 40ch;
  margin-left: auto;
  text-align: right;
  margin-bottom: 1em;
}

.process-btn {
  font-size: 1.25em;
  margin-top: 1em;
}

@media (max-width: 900px) {
  .process {
    background-image: linear-gradient(#dddddd, #dddddd);
  }

  .process-top,
  .process-bottom {
    background-image: linear-gradient(#dddddd, #dddddd);
  }

  .process-content {
    max-width: none;
  }

  .process-wb {
    display: none;
  }
}

@media (max-width: 640px) {
  .process {
    padding: 3em 1.25em;
  }

  .process-step {
    grid-template-columns: 3em 1fr;
  }

  .process-step-num {
    font-size: 1.2em;
  }
}

/* ── Contact section ── */

.contact-section {
  padding: 0 2em 4em;
  margin: 0;
  position: relative;
  background-image: linear-gradient(to right, #eeeeee 50%, rgba(0,0,0,0) 50%);
}

.contact-top {
  clip-path: polygon(0% 100%, 100% 100%, 0% 0%);
  height: 20vh;
  top: 0;
  transform: translateY(calc(-100% + 1px));
  background-image: linear-gradient(to right, #eeeeee 50%, rgba(0,0,0,0) 50%);
}

.contact-bottom {
  clip-path: polygon(0% 0%, 100% 100%, 100% 0%);
  height: 20vh;
  top: 100%;
  transform: translateY(-1px);
  background-image: linear-gradient(to right, #eeeeee 50%, rgba(0,0,0,0) 50%);
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-section .glass-move {
  left: 0;
  top: -5em;
  width: 160px;
  height: 40px;
  transform: translate(-50%, -50%);
}

.contact-heading {
  margin-top: 2em;
  font-size: 1.8em;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3em;
  margin-top: 1em;
}

.contact-form-col {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.contact-label {
  margin-top: 0.75em;
  font-size: 1em;
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: 0.5em 0.75em;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 4px;
  background: white;
  font-family: inherit;
  font-size: 1em;
}

.contact-input:focus,
.contact-textarea:focus {
  outline: 2px solid var(--color-focus);
  outline-offset: 1px;
  border-color: transparent;
}

.contact-textarea {
  resize: vertical;
}

.contact-btn {
  align-self: flex-start;
  margin-top: 1em;
  font-size: 1.25em;
}

.contact-details-col {
  display: flex;
  flex-direction: column;
  gap: 1em;
  padding-top: 0.5em;
}

.contact-email-link {
  display: block;
  width: fit-content;
  margin-top: 2em;
  color: var(--color-heading-blue);
  text-decoration: none;
}

.contact-email-link:hover {
  text-decoration: underline;
}

.contact-address {
  font-size: 1em;
  line-height: 1.6;
}

@media (max-width: 850px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2em;
  }
}

@media (max-width: 850px) {
  .about-content {
    padding: 2em;
    grid-template-columns: 1fr;
  }
}
