:root {
  --tex-amber: #f59e0b;
  --tex-amber-deep: #c2740a;
  --tex-charcoal: #1c1917;
  --tex-charcoal-soft: #292524;
  --tex-brick: #dc2626;
  --tex-cream: #fffdf7;
  --tex-stone: #78716c;
  --tex-stone-light: #a8a29e;
  --tex-line: #e7e3da;
  --tex-white: #ffffff;
  --tex-shadow: 0 8px 24px rgba(28, 25, 23, 0.1);
  --tex-shadow-lg: 0 18px 50px rgba(28, 25, 23, 0.18);
  --tex-r: 8px;
  --tex-maxw: 1180px;
  --tex-ff-head: "Archivo", system-ui, sans-serif;
  --tex-ff-body: "DM Sans", system-ui, sans-serif;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--tex-ff-body);
  color: var(--tex-charcoal);
  background: var(--tex-cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img,
video {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
h1,
h2,
h3,
h4 {
  font-family: var(--tex-ff-head);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.tex-wrap {
  max-width: var(--tex-maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.tex-eyebrow {
  font-family: var(--tex-ff-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  color: var(--tex-amber-deep);
}
.tex-skip {
  position: absolute;
  left: -9999px;
}
.tex-skip:focus {
  left: 16px;
  top: 16px;
  background: var(--tex-charcoal);
  color: #fff;
  padding: 10px 16px;
  z-index: 200;
  border-radius: 6px;
}

/* disclaimer bar */
.tex-bar {
  background: var(--tex-charcoal);
  color: #f5f1e8;
  font-size: 0.8rem;
  letter-spacing: 0.01em;
}
.tex-bar .tex-wrap {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  padding: 8px 24px;
  text-align: center;
}
.tex-bar strong {
  color: var(--tex-amber);
}

/* header */
.tex-head {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 247, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 3px solid var(--tex-charcoal);
}
.tex-head .tex-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.tex-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.tex-mark {
  width: 44px;
  height: 44px;
  border-radius: var(--tex-r);
  background: var(--tex-amber);
  display: grid;
  place-items: center;
  font-family: var(--tex-ff-head);
  font-weight: 800;
  color: var(--tex-charcoal);
  font-size: 1.1rem;
  transform: skewX(-6deg);
  box-shadow: var(--tex-shadow);
}
.tex-mark span {
  transform: skewX(6deg);
}
.tex-brand b {
  font-family: var(--tex-ff-head);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.tex-brand small {
  display: block;
  font-size: 0.7rem;
  color: var(--tex-stone);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tex-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.tex-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 9px 14px;
  border-radius: 6px;
  color: var(--tex-charcoal-soft);
}
.tex-nav a:hover,
.tex-nav a[aria-current="page"] {
  background: var(--tex-charcoal);
  color: #fff;
}
.tex-cta-btn {
  background: var(--tex-amber) !important;
  color: var(--tex-charcoal) !important;
  font-weight: 800 !important;
  box-shadow: var(--tex-shadow);
}
.tex-cta-btn:hover {
  background: var(--tex-amber-deep) !important;
  color: #fff !important;
}
.tex-burger {
  display: none;
  background: var(--tex-charcoal);
  border: 0;
  width: 46px;
  height: 46px;
  border-radius: 6px;
  cursor: pointer;
}
.tex-burger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: #fff;
  margin: 4px auto;
  transition: 0.25s;
}
.tex-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.tex-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.tex-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* buttons */
.tex-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-family: var(--tex-ff-head);
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: var(--tex-r);
  cursor: pointer;
  border: 0;
  transition: 0.2s;
}
.tex-btn-primary {
  background: var(--tex-amber);
  color: var(--tex-charcoal);
}
.tex-btn-primary:hover {
  background: var(--tex-charcoal);
  color: var(--tex-amber);
  transform: translateY(-2px);
}
.tex-btn-ghost {
  background: transparent;
  color: var(--tex-charcoal);
  border: 2px solid var(--tex-charcoal);
}
.tex-btn-ghost:hover {
  background: var(--tex-charcoal);
  color: #fff;
}
.tex-btn-light {
  background: var(--tex-amber);
  color: var(--tex-charcoal);
}
.tex-btn-light:hover {
  background: #fff;
}

/* hero */
.tex-hero {
  position: relative;
  overflow: hidden;
  background: var(--tex-charcoal);
  color: var(--tex-cream);
}
.tex-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.tex-hero-media video,
.tex-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
}
.tex-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(28, 25, 23, 0.92) 30%,
    rgba(28, 25, 23, 0.55) 100%
  );
}
.tex-hero .tex-wrap {
  position: relative;
  z-index: 1;
  padding: 96px 24px 104px;
}
.tex-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.tex-hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 4rem);
  color: #fff;
  margin: 18px 0 20px;
}
.tex-hero h1 em {
  font-style: normal;
  color: var(--tex-amber);
  position: relative;
}
.tex-hero p {
  font-size: 1.18rem;
  color: #e7e2d8;
  max-width: 46ch;
  margin-bottom: 30px;
}
.tex-hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.tex-hero-card {
  background: rgba(255, 253, 247, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 12px;
  padding: 26px;
  backdrop-filter: blur(4px);
}
.tex-hero-card h3 {
  color: var(--tex-amber);
  font-size: 1.05rem;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.tex-hero-card ul {
  list-style: none;
}
.tex-hero-card li {
  display: flex;
  gap: 11px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.96rem;
  color: #ece7dc;
}
.tex-hero-card li:last-child {
  border: 0;
}
.tex-hero-card .tex-tick {
  color: var(--tex-amber);
  font-weight: 800;
  flex: none;
}
.tex-microdis {
  font-size: 0.82rem;
  color: var(--tex-stone-light);
  margin-top: 22px;
  max-width: 60ch;
}

/* stat strip */
.tex-strip {
  background: var(--tex-amber);
  color: var(--tex-charcoal);
}
.tex-strip .tex-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
  padding: 26px 24px;
}
.tex-strip div {
  text-align: center;
}
.tex-strip b {
  display: block;
  font-family: var(--tex-ff-head);
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
}
.tex-strip span {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* sections */
.tex-sec {
  padding: 84px 0;
}
.tex-sec-alt {
  background: var(--tex-white);
}
.tex-sec-dark {
  background: var(--tex-charcoal);
  color: var(--tex-cream);
}
.tex-sec-dark h2,
.tex-sec-dark h3 {
  color: #fff;
}
.tex-head-block {
  max-width: 62ch;
  margin-bottom: 44px;
}
.tex-head-block.center {
  margin: 0 auto 48px;
  text-align: center;
}
.tex-sec h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  margin: 12px 0 16px;
}
.tex-sec p.lead {
  font-size: 1.12rem;
  color: var(--tex-stone);
}
.tex-sec-dark p.lead {
  color: #c9c3b8;
}

/* grid cards */
.tex-grid {
  display: grid;
  gap: 22px;
}
.tex-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.tex-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.tex-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.tex-card {
  background: var(--tex-white);
  border: 1px solid var(--tex-line);
  border-radius: var(--tex-r);
  padding: 28px;
  border-top: 5px solid var(--tex-amber);
  transition: 0.22s;
}
.tex-sec-alt .tex-card {
  background: var(--tex-cream);
}
.tex-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--tex-shadow-lg);
}
.tex-card h3 {
  font-size: 1.28rem;
  margin-bottom: 10px;
}
.tex-card p {
  color: var(--tex-stone);
  font-size: 0.97rem;
}
.tex-card .tex-num {
  font-family: var(--tex-ff-head);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--tex-amber);
  line-height: 1;
}

/* pain cards */
.tex-pain {
  border-top-color: var(--tex-brick);
}
.tex-pain .tex-num {
  color: var(--tex-brick);
}

/* process */
.tex-steps {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}
.tex-step {
  position: relative;
  background: var(--tex-charcoal-soft);
  border-radius: var(--tex-r);
  padding: 26px;
  color: var(--tex-cream);
}
.tex-step .tex-num {
  position: absolute;
  top: -14px;
  right: 18px;
  font-size: 3.4rem;
  opacity: 0.18;
  color: var(--tex-amber);
}
.tex-step h3 {
  font-size: 1.18rem;
  margin-bottom: 9px;
  color: #fff;
}
.tex-step p {
  color: #c9c3b8;
  font-size: 0.95rem;
}
.tex-step-gov {
  border: 2px solid var(--tex-amber);
  background: linear-gradient(160deg, #33302c, #1c1917);
}
.tex-step-gov .tex-flag {
  display: inline-block;
  background: var(--tex-amber);
  color: var(--tex-charcoal);
  font-family: var(--tex-ff-head);
  font-weight: 800;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 5px;
  margin-bottom: 12px;
}
.tex-step-gov .tex-warn {
  margin-top: 13px;
  font-size: 0.84rem;
  color: var(--tex-amber);
  border-top: 1px solid rgba(245, 158, 11, 0.3);
  padding-top: 12px;
}

/* split feature */
.tex-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.tex-split img {
  border-radius: 12px;
  box-shadow: var(--tex-shadow-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.tex-split ul {
  list-style: none;
  margin-top: 18px;
}
.tex-split li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--tex-line);
  font-weight: 500;
}
.tex-split li .tex-tick {
  color: var(--tex-amber-deep);
  font-weight: 800;
  flex: none;
}

/* testimonials */
.tex-quote {
  background: var(--tex-white);
  border-radius: var(--tex-r);
  padding: 28px;
  border-left: 5px solid var(--tex-amber);
}
.tex-sec-alt .tex-quote {
  background: var(--tex-cream);
}
.tex-quote p {
  font-size: 1.02rem;
  font-style: italic;
  color: var(--tex-charcoal);
  margin-bottom: 16px;
}
.tex-quote footer {
  font-size: 0.88rem;
  color: var(--tex-stone);
  font-style: normal;
}
.tex-quote footer b {
  color: var(--tex-charcoal);
  font-family: var(--tex-ff-head);
}
.tex-quote .tex-stars {
  color: var(--tex-amber);
  margin-bottom: 10px;
  letter-spacing: 2px;
}

/* CTA band */
.tex-ctaband {
  background: var(--tex-amber);
  color: var(--tex-charcoal);
  text-align: center;
}
.tex-ctaband .tex-wrap {
  padding: 72px 24px;
}
.tex-ctaband h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 14px;
}
.tex-ctaband p {
  font-size: 1.1rem;
  max-width: 54ch;
  margin: 0 auto 14px;
  color: #3a2f17;
}
.tex-ctaband .tex-dis {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 26px;
  color: #5a4a22;
}
.tex-ctaband .tex-hero-cta {
  justify-content: center;
}

/* services detail */
.tex-svc {
  background: var(--tex-white);
  border: 1px solid var(--tex-line);
  border-radius: var(--tex-r);
  overflow: hidden;
  margin-bottom: 30px;
}
.tex-svc-head {
  padding: 24px 28px;
  background: var(--tex-charcoal);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 16px;
}
.tex-svc-head .tex-num {
  font-size: 2.2rem;
  color: var(--tex-amber);
}
.tex-svc-head h3 {
  font-size: 1.4rem;
  color: #fff;
  margin: 0;
}
.tex-svc-body {
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.tex-incl h4,
.tex-excl h4 {
  font-family: var(--tex-ff-head);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.tex-incl h4 {
  color: var(--tex-amber-deep);
}
.tex-excl h4 {
  color: var(--tex-brick);
}
.tex-incl ul,
.tex-excl ul {
  list-style: none;
}
.tex-incl li,
.tex-excl li {
  display: flex;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.95rem;
  color: var(--tex-charcoal-soft);
}
.tex-incl li::before {
  content: "✓";
  color: var(--tex-amber-deep);
  font-weight: 800;
  flex: none;
}
.tex-excl li::before {
  content: "✕";
  color: var(--tex-brick);
  font-weight: 800;
  flex: none;
}
.tex-svc-aside {
  grid-column: 1/-1;
  background: var(--tex-cream);
  border-radius: 6px;
  padding: 16px 18px;
  font-size: 0.9rem;
  color: var(--tex-stone);
}

/* faq */
.tex-faqcat {
  font-family: var(--tex-ff-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  color: var(--tex-amber-deep);
  margin: 34px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--tex-line);
}
.tex-acc {
  border: 1px solid var(--tex-line);
  border-radius: var(--tex-r);
  margin-bottom: 12px;
  background: var(--tex-white);
  overflow: hidden;
}
.tex-acc-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 20px 22px;
  font-family: var(--tex-ff-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--tex-charcoal);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.tex-acc-btn::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--tex-amber-deep);
  flex: none;
  transition: 0.2s;
}
.tex-acc-btn[aria-expanded="true"]::after {
  transform: rotate(45deg);
}
.tex-acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 22px;
}
.tex-acc-btn[aria-expanded="true"] + .tex-acc-panel {
  max-height: 600px;
  padding: 0 22px 22px;
}
.tex-acc-panel p {
  color: var(--tex-stone);
}

/* tables / about */
.tex-info {
  width: 100%;
  border-collapse: collapse;
  background: var(--tex-white);
  border: 1px solid var(--tex-line);
  border-radius: var(--tex-r);
  overflow: hidden;
}
.tex-info th,
.tex-info td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--tex-line);
  font-size: 0.95rem;
}
.tex-info th {
  background: var(--tex-cream);
  font-family: var(--tex-ff-head);
  width: 38%;
  color: var(--tex-charcoal);
}
.tex-info tr:last-child th,
.tex-info tr:last-child td {
  border-bottom: 0;
}
.tex-xlist {
  list-style: none;
  margin-top: 16px;
}
.tex-xlist li {
  display: flex;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--tex-line);
}
.tex-xlist li::before {
  content: "✕";
  color: var(--tex-brick);
  font-weight: 800;
  flex: none;
}

/* team */
.tex-member {
  background: var(--tex-white);
  border: 1px solid var(--tex-line);
  border-radius: var(--tex-r);
  padding: 24px;
  text-align: center;
}
.tex-avatar {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: var(--tex-amber);
  color: var(--tex-charcoal);
  display: grid;
  place-items: center;
  font-family: var(--tex-ff-head);
  font-weight: 800;
  font-size: 1.6rem;
  margin: 0 auto 16px;
  overflow: hidden;
  border: 3px solid var(--tex-amber);
}
.tex-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tex-member h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.tex-member .tex-role {
  color: var(--tex-amber-deep);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.tex-member p {
  color: var(--tex-stone);
  font-size: 0.92rem;
}

/* contact / forms */
.tex-contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
}
.tex-form {
  background: var(--tex-white);
  border: 1px solid var(--tex-line);
  border-radius: var(--tex-r);
  padding: 30px;
}
.tex-field {
  margin-bottom: 18px;
}
.tex-field label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 7px;
}
.tex-field input,
.tex-field select,
.tex-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--tex-line);
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.97rem;
  background: var(--tex-cream);
}
.tex-field input:focus,
.tex-field select:focus,
.tex-field textarea:focus {
  outline: 0;
  border-color: var(--tex-amber);
}
.tex-field textarea {
  min-height: 120px;
  resize: vertical;
}
.tex-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 0.88rem;
  color: var(--tex-stone);
}
.tex-consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex: none;
}
.tex-consent a {
  color: var(--tex-amber-deep);
  font-weight: 600;
}
.tex-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.tex-cinfo {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.tex-cinfo .tex-card {
  border-top-color: var(--tex-amber);
}
.tex-cinfo a {
  color: var(--tex-amber-deep);
  font-weight: 600;
  text-decoration: none;
}

/* legal */
.tex-legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 24px;
}
.tex-legal h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.tex-legal .tex-upd {
  color: var(--tex-stone);
  font-size: 0.9rem;
  margin-bottom: 30px;
}
.tex-legal h2 {
  font-size: 1.3rem;
  margin: 30px 0 10px;
  color: var(--tex-charcoal);
}
.tex-legal p,
.tex-legal li {
  color: var(--tex-charcoal-soft);
  margin-bottom: 10px;
}
.tex-legal ul {
  margin: 0 0 14px 20px;
}

/* footer */
.tex-foot {
  background: var(--tex-charcoal);
  color: #c9c3b8;
  padding: 56px 0 26px;
}
.tex-foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 34px;
  margin-bottom: 34px;
}
.tex-foot h4 {
  color: #fff;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.tex-foot a {
  color: #c9c3b8;
  text-decoration: none;
  display: block;
  padding: 5px 0;
  font-size: 0.93rem;
}
.tex-foot a:hover {
  color: var(--tex-amber);
}
.tex-foot .tex-brand b {
  color: #fff;
}
.tex-foot .tex-brand small {
  color: var(--tex-stone-light);
}
.tex-foot p {
  font-size: 0.9rem;
  margin-top: 12px;
}
.tex-foot-dis {
  border-top: 1px solid #44403c;
  padding-top: 22px;
  font-size: 0.84rem;
  color: var(--tex-stone-light);
}
.tex-foot-dis strong {
  color: var(--tex-amber);
}
.tex-foot-dis p {
  margin-top: 6px;
}

@media (max-width: 900px) {
  .tex-hero-grid,
  .tex-split,
  .tex-contact-grid,
  .tex-svc-body {
    grid-template-columns: 1fr;
  }
  .tex-grid-3,
  .tex-grid-4,
  .tex-steps {
    grid-template-columns: 1fr 1fr;
  }
  .tex-foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 680px) {
  .tex-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--tex-cream);
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    gap: 4px;
    border-bottom: 3px solid var(--tex-charcoal);
    box-shadow: var(--tex-shadow-lg);
  }
  .tex-nav[data-open="true"] {
    display: flex;
  }
  .tex-burger {
    display: block;
  }
  .tex-grid-3,
  .tex-grid-4,
  .tex-steps,
  .tex-grid-2,
  .tex-foot-grid {
    grid-template-columns: 1fr;
  }
  .tex-hero .tex-wrap {
    padding: 60px 24px 70px;
  }
}
