:root {
  color-scheme: light;
  --paper-0: #fdfaf3;
  --paper-1: #f5f1e8;
  --paper-2: #ebe6db;
  --ink-0: #1a1c1e;
  --ink-1: #2d3135;
  --graphite: #d1cdc7;
  --copper: #b45309;
  --plat-blue: #2563eb;
  --rust: #991b1b;
  --shadow-soft: 0 25px 45px rgba(26, 28, 30, 0.15);
  --shadow-strong: 0 30px 60px rgba(26, 28, 30, 0.2);
  --font-serif: "Fraunces", "Cormorant Garamond", serif;
  --font-sans: "IBM Plex Sans", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: var(--paper-0);
  color: var(--ink-0);
  font-family: var(--font-sans);
  cursor: default;
}

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

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

button,
input,
textarea {
  font-family: inherit;
}

::selection {
  background-color: var(--copper);
  color: var(--paper-0);
}

.app {
  position: relative;
  min-height: 100vh;
  transition: opacity 1s ease;
}

.is-loading {
  opacity: 0;
}

.is-loaded {
  opacity: 1;
}

.texture-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.paper-grain {
  background-image: url("https://www.transparenttextures.com/patterns/handmade-paper.png");
  opacity: 0.05;
  z-index: 50;
}

.archival-vignette {
  background: radial-gradient(circle, rgba(253, 250, 243, 0) 0%, rgba(245, 241, 232, 0.4) 100%);
  z-index: 40;
}

.page {
  position: relative;
  z-index: 10;
}

.container {
  width: min(80rem, calc(100% - 3rem));
  margin: 0 auto;
}

.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 2rem 0 1rem;
  border-bottom: 1px solid rgba(209, 205, 199, 0.3);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--ink-0);
  background: none;
  -webkit-text-fill-color: var(--ink-0);
}

.brand-subtitle {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--ink-1);
  opacity: 0.6;
}

.nav-actions {
  display: none;
  align-items: center;
  gap: 2.5rem;
}

.nav-toggle {
  border: 1px solid var(--ink-0);
  background: transparent;
  color: var(--ink-0);
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-toggle:hover {
  background: var(--ink-0);
  color: var(--paper-0);
}

.nav-icon {
  line-height: 1;
}

.nav-icon-close {
  display: none;
}

.nav-toggle.is-open .nav-icon-open {
  display: none;
}

.nav-toggle.is-open .nav-icon-close {
  display: inline;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(209, 205, 199, 0.3);
  padding: 0 1.5rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-6px);
  transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.35s ease,
    padding 0.35s ease;
}

.mobile-nav.is-open {
  max-height: 20rem;
  opacity: 1;
  transform: translateY(0);
  padding: 1.5rem 1.5rem 2rem;
}

.mobile-link {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--ink-1);
}

.mobile-link:hover {
  color: var(--copper);
}

.mobile-nav .button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: 15rem;
  align-self: flex-start;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--ink-1);
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--copper);
}

.button {
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
}

.button-outline {
  padding: 0.55rem 1rem;
  border: 1px solid var(--ink-0);
  color: var(--ink-0);
  font-size: 0.6875rem;
  letter-spacing: 0.3em;
  transition: background 0.3s ease, color 0.3s ease;
}

.button-outline:hover {
  background: var(--ink-0);
  color: var(--paper-0);
}

.button-primary {
  position: relative;
  padding: 1rem 2rem;
  background: var(--copper);
  color: var(--paper-0);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(180, 83, 9, 0.2);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.button-primary .button-text {
  position: relative;
  z-index: 1;
}

.button-primary .button-fill {
  position: absolute;
  inset: 0;
  background: var(--ink-0);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 0;
}

.button-primary:hover {
  box-shadow: 0 16px 35px rgba(26, 28, 30, 0.2);
}

.button-primary:hover .button-fill {
  transform: translateY(0);
}

.button-primary:active {
  transform: scale(0.98);
}

.button-link {
  border-bottom: 1px solid var(--ink-0);
  padding: 1rem 0;
  color: var(--ink-0);
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.button-link:hover {
  color: var(--copper);
  border-color: var(--copper);
}

.button-dark {
  padding: 1rem 2.5rem;
  background: var(--ink-0);
  color: var(--paper-0);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  transition: background 0.3s ease;
  width: 100%;
}

.button-dark:hover {
  background: var(--copper);
}

.hero {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: visible;
}

.hero-texas {
  position: absolute;
  top: 1.5rem;
  right: -2rem;
  width: min(54rem, 92vw);
  opacity: 0.24;
  pointer-events: none;
  z-index: 0;
  animation: texas-float 18s ease-in-out infinite;
}

.hero-texas svg {
  width: 100%;
  height: auto;
  display: block;
}

.hero-texas svg * {
  fill: none !important;
  stroke: var(--ink-1);
  stroke-opacity: 0.35;
  stroke-width: 1.2;
}


.hero-grid {
  display: grid;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--copper);
  font-weight: 600;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw + 1rem, 4.25rem);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.01em;
}

.hero-title-italic {
  font-style: italic;
}

.hero-lede {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--ink-1);
  max-width: 36rem;
  font-weight: 300;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 1rem;
}

.hero-proof {
  position: relative;
  margin-top: 3rem;
}

.proof-card {
  background: var(--paper-1);
  border: 1px solid var(--graphite);
  padding: 2rem;
  box-shadow: var(--shadow-strong);
  transform: rotate(2deg);
}

.proof-body {
  border: 1px solid rgba(209, 205, 199, 0.4);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.proof-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.proof-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.proof-meta-label {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  opacity: 0.5;
}

.proof-meta-value {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
}

.stamp {
  position: relative;
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stamp-ring {
  position: absolute;
  inset: 0;
  border: 1.5px dashed var(--copper);
  border-radius: 50%;
  opacity: 0.5;
  animation: spin 20s linear infinite;
}

.stamp-inner {
  position: absolute;
  inset: 0.5rem;
  border: 1px solid var(--copper);
  border-radius: 50%;
  opacity: 0.3;
}

.stamp-text {
  text-align: center;
}

.stamp-title {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--copper);
  line-height: 1;
}

.stamp-label {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--copper);
}

.stamp-sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.375rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--copper);
  opacity: 0.5;
  margin-top: 0.35rem;
}

.proof-quote p {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1.7;
  color: var(--ink-1);
  margin: 0;
}

.proof-quote {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.rule {
  height: 1px;
  background: var(--graphite);
  opacity: 0.3;
  width: 100%;
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  text-transform: uppercase;
  opacity: 0.5;
}

.stat-value {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--copper);
}

.proof-shadow {
  position: absolute;
  inset: 0;
  background: var(--paper-2);
  border: 1px solid rgba(209, 205, 199, 0.5);
  transform: rotate(-1deg) translate(1rem, 1rem);
  z-index: -1;
}

.content {
  padding: 6rem 0;
}

.divider {
  height: 1px;
  background: var(--graphite);
  opacity: 0.3;
  margin: 0 0 6rem;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section-header h3,
.section-intro h3,
.contact-copy h3 {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  margin: 0;
}

.image-feature .about-copy {
  margin-top: 1rem;
}

.image-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  align-items: start;
}

.image-copy {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 34rem;
}

@media (max-width: 767px) {
  .image-split {
    grid-template-columns: 1fr;
  }
}

.about-panel {
  background: var(--paper-0);
  border: 1px solid var(--graphite);
  padding: 2.5rem;
  position: relative;
}

.about-top {
  display: grid;
  gap: 2.5rem;
}

.about-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6.5rem;
  height: 0.3rem;
  background: var(--copper);
}

.about-grid {
  display: grid;
  gap: 2.5rem;
}

.about-story {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-media {
  margin: 0;
  border: 1px solid var(--graphite);
  background: var(--paper-2);
  padding: 0.75rem;
  box-shadow: var(--shadow-soft);
  max-width: 600px;
}

.about-media img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(0.95);
}

.about-media figcaption {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-1);
  opacity: 0.6;
  margin-top: 0.75rem;
}

.about-kicker {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--copper);
  font-weight: 600;
}

.about-copy {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--ink-1);
  margin: 0;
}

.about-points {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--ink-1);
  line-height: 1.7;
  font-size: 1.125rem;
}

.about-points li {
  margin-bottom: 0.6rem;
}

.about-card {
  background: var(--paper-1);
  border: 1px solid var(--graphite);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.about-card h4 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin: 0 0 1.5rem;
}

.about-card ul {
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
  color: var(--ink-1);
  line-height: 1.7;
}

.about-card li {
  margin-bottom: 0.6rem;
}

.about-note {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-1);
  opacity: 0.7;
  margin: 0 0 1rem;
}

.about-disclaimer {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-1);
  opacity: 0.6;
  margin: 0;
}

.section-note {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-1);
  opacity: 0.6;
  max-width: 14rem;
  line-height: 1.6;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label span {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--ink-1);
  opacity: 0.4;
  font-weight: 700;
  white-space: nowrap;
}

.label-rule {
  width: 3rem;
  height: 1px;
  background: var(--graphite);
  opacity: 0.3;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--graphite);
  border: 1px solid var(--graphite);
}

.service-card {
  position: relative;
  background: var(--paper-0);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: background 0.5s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6rem;
  height: 0.25rem;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.service-card:hover {
  background: var(--paper-1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-code {
  display: none;
}

.service-card-link {
  color: inherit;
  text-decoration: none;
}

.service-card-link:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: -2px;
}

.service-card h4 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1.3;
  margin: 0;
}

.service-card p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--ink-1);
  font-weight: 300;
  margin: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-1);
  transition: color 0.3s ease, transform 0.3s ease;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.service-link span {
  transition: transform 0.3s ease;
}

.service-card:hover .service-link {
  color: var(--copper);
}

.service-card:hover .service-link span {
  transform: translateX(4px);
}

.interior-hero {
  padding-top: 1rem;
}

.interior-hero-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

.interior-proof .proof-card {
  transform: none;
}

.interior-proof .proof-shadow {
  transform: rotate(-1deg) translate(0.85rem, 0.85rem);
}

.hero-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-chip {
  border: 1px solid rgba(209, 205, 199, 0.9);
  background: rgba(245, 241, 232, 0.8);
  padding: 0.65rem 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-1);
}

.section-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.section-action-note {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-1);
  opacity: 0.6;
  max-width: 28rem;
  line-height: 1.8;
}

.cta-panel {
  position: relative;
  background: var(--paper-1);
  border: 1px solid var(--graphite);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.cta-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6.5rem;
  height: 0.3rem;
  background: var(--copper);
}

.cta-panel h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin: 0;
}

.cta-panel p {
  margin: 0;
  max-width: 40rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-1);
}


.contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

.contact-copy p {
  font-size: 1.125rem;
  color: var(--ink-1);
  line-height: 1.7;
  margin: 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 1.5rem;
}

.contact-details p {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin: 0;
}

.contact-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--copper);
  font-weight: 700;
}

.form-card {
  position: relative;
  background: var(--paper-1);
  border: 1px solid var(--graphite);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}


form {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-1);
  opacity: 0.6;
}

.field input,
.field textarea {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--graphite);
  padding: 0.5rem 0;
  color: var(--ink-0);
  outline: none;
  transition: border-color 0.2s ease;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--copper);
}

.field textarea {
  resize: none;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--graphite);
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.form-note {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  color: var(--ink-1);
  opacity: 0.6;
  font-style: italic;
  max-width: 12.5rem;
}

.form-status {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  min-height: 1.2rem;
  color: var(--ink-1);
  opacity: 0.7;
}

.form-status[data-state="success"] {
  color: #3f6212;
  opacity: 1;
}

.form-status[data-state="error"] {
  color: var(--rust);
  opacity: 1;
}

.site-footer {
  padding: 4rem 0 3rem;
  border-top: 1px solid rgba(209, 205, 199, 0.3);
}


.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-left h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin: 0;
}

.footer-left p {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-1);
  opacity: 0.5;
  margin: 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 3rem;
}

.footer-links a {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  color: var(--ink-1);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--copper);
}

.footer-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-card {
  display: inline-block;
  border: 1px solid var(--graphite);
  padding: 1rem;
  opacity: 0.4;
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-1);
}

.footer-card span {
  color: var(--copper);
}

.footer-right p {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--ink-1);
  opacity: 0.4;
  margin: 0;
}

.footer-blurb {
  max-width: 20rem;
  line-height: 1.8;
}

.registration-mark {
  position: fixed;
  width: 1.5rem;
  height: 1.5rem;
  opacity: 0.3;
  pointer-events: none;
}

.registration-mark.top-left {
  top: 1rem;
  left: 1rem;
  border-top: 1px solid var(--graphite);
  border-left: 1px solid var(--graphite);
}

.registration-mark.top-right {
  top: 1rem;
  right: 1rem;
  border-top: 1px solid var(--graphite);
  border-right: 1px solid var(--graphite);
}

.registration-mark.bottom-left {
  bottom: 1rem;
  left: 1rem;
  border-bottom: 1px solid var(--graphite);
  border-left: 1px solid var(--graphite);
}

.registration-mark.bottom-right {
  bottom: 1rem;
  right: 1rem;
  border-bottom: 1px solid var(--graphite);
  border-right: 1px solid var(--graphite);
}

.intro-animate {
  opacity: 0;
  transform: translateY(2rem);
  animation: fade-slide-in 1s ease forwards;
}

.proof-animate {
  opacity: 0;
  transform: scale(0.95);
  animation: zoom-in 1s ease forwards;
  animation-delay: 0.3s;
}

@keyframes fade-slide-in {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoom-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes texas-float {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(10px) translateX(-6px);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .form-actions {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .form-note {
    max-width: 12.5rem;
  }

  .button-dark {
    width: auto;
  }
}

@media (min-width: 1145px) {
  .nav-actions {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .mobile-nav {
    display: none;
  }

  .section-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .about-top {
    grid-template-columns: minmax(0, 600px) minmax(0, 1fr);
    align-items: end;
  }

  .about-panel {
    padding: 3rem;
  }

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

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

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .footer-right {
    text-align: right;
  }

  .interior-hero {
    padding-top: 2rem;
  }
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: start;
  }

  .hero-copy {
    grid-column: span 7;
  }

  .hero-proof {
    grid-column: span 5;
    margin-top: 0;
  }

  .service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .service-grid.service-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .interior-hero-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .interior-hero-grid .hero-copy {
    grid-column: span 7;
  }

  .interior-hero-grid .hero-proof {
    grid-column: span 5;
    margin-top: 0;
  }

  .contact {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: start;
  }

  .contact-copy {
    grid-column: span 5;
  }

  .contact-form {
    grid-column: span 7;
  }

  .form-card {
    padding: 3rem;
  }
}
