@font-face {
  font-family: "Century Gothic";
  src: url("assets/fonts/CenturyGothic.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Century Gothic";
  src: url("assets/fonts/CenturyGothic-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #252525;
  --bg-soft: #111111;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.14);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --accent: #ffc000;
  --accent-soft: rgba(255, 192, 0, 0.18);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  --radius: 24px;
  --radius-sm: 16px;
  --shell: min(1080px, calc(100vw - 2rem));
  --header-height: 76px;
  --transition: 260ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Century Gothic", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(255, 192, 0, 0.1), transparent 22%),
    linear-gradient(180deg, #2b2b2b 0%, #1a1a1a 24%, #101010 100%);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  height: var(--header-height);
  max-width: none;
  margin: 0 auto;
  left: 0;
  transform: none;
  padding: 0 0.75rem;
  overflow: visible;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  height: var(--header-height);
  border-radius: 0;
  background: rgba(8, 8, 8, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0;
}

.brand__logo {
  width: clamp(112px, 12vw, 138px);
  height: auto;
  filter: invert(1);
}

.site-nav {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0.75rem;
  min-width: 210px;
  display: grid;
  gap: 0.35rem;
  padding: 0.8rem;
  border-radius: 20px;
  background: rgba(10, 10, 10, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity var(--transition),
    transform var(--transition);
  z-index: 35;
}

.site-nav a {
  position: relative;
  padding: 0.8rem 0.95rem;
  border-radius: 14px;
  color: var(--muted);
  transition: color var(--transition), background-color var(--transition);
  font-size: 0.92rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.site-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-toggle {
  display: inline-flex;
  min-width: 116px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0 1rem;
  color: var(--text);
  cursor: pointer;
  margin-left: auto;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

.nav-toggle__label {
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-toggle__chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__chevron {
  transform: rotate(-135deg) translateY(-1px);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-height) + 3rem) 0 3.75rem;
  overflow: hidden;
}

.hero__backdrop,
.hero__backdrop::after {
  position: absolute;
  inset: 0;
}

.hero__backdrop {
  overflow: hidden;
}

.hero__backdrop::after {
  content: "";
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.42), rgba(17, 17, 17, 0.88)),
    linear-gradient(90deg, rgba(17, 17, 17, 0.68), rgba(17, 17, 17, 0.18));
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
  will-change: transform;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(290px, 0.75fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.76rem;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 10ch;
  margin-bottom: 1rem;
  font-size: clamp(2.45rem, 6vw, 4.9rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

h2 {
  max-width: 14ch;
  margin-bottom: 1rem;
  font-size: clamp(1.9rem, 4vw, 3.15rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

h3 {
  margin-bottom: 0;
  font-size: clamp(1.18rem, 2vw, 1.9rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.hero__copy h3 {
  margin-bottom: 1rem;
}

.hero__brand {
  max-width: none;
  white-space: nowrap;
}

.hero__lede,
.section-copy p,
.section-heading p,
.contact-copy p {
  max-width: 60ch;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.hero__lede--profile {
  line-height: 1.85;
}

.hero__paragraph {
  display: block;
}

.hero__paragraph + .hero__paragraph {
  margin-top: 1rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform var(--transition),
    border-color var(--transition),
    background-color var(--transition),
    color var(--transition);
}

.button:hover {
  transform: translateY(-2px);
}

.button--solid {
  color: #111111;
  background: var(--accent);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.05);
}

.hero__panel {
  overflow: hidden;
  border-radius: var(--radius);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.hero__panel img {
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
}

.hero__label,
.about-card__title,
.contact-label {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
}

.hero__panel-text {
  margin: 0.55rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.text-accent--profile {
  display: inline;
  letter-spacing: 0.01em;
  text-shadow:
    0 0 1px rgba(255, 192, 0, 0.95),
    0 0 10px rgba(255, 192, 0, 0.18);
  -webkit-text-stroke: 0.35px rgba(255, 192, 0, 0.4);
}

.text-nowrap {
  white-space: nowrap;
}

.about-name {
  margin: 0 0 0.7rem;
  font-size: clamp(1rem, 2vw, 1.3rem);
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.about-paragraph-gap {
  margin-top: 1.2rem;
}

.section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.section::before {
  content: none;
}

.section--services,
.section--work {
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.56), rgba(17, 17, 17, 0.68)),
    url("assets/images/Drill 2.jpg") center center / cover no-repeat;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.section--services {
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.hero::after,
.section--services::after,
.section--work::after,
.section--contact::after {
  content: none;
}

.section--services::before,
.section--work::before,
.section--contact::before {
  content: none;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.8rem, 4vw, 4rem);
  align-items: center;
}

.about-media,
.contact-media,
.services-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-media img,
.contact-media img,
.services-media img {
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.about-card {
  margin-top: 1.75rem;
  padding: 1.35rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.about-card__title {
  margin-bottom: 1.25rem;
}

.contact-list {
  display: grid;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
}

.contact-list--large li {
  grid-template-columns: 42px minmax(0, 1fr);
}

.contact-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(255, 192, 0, 0.28);
}

.contact-list--large .contact-icon {
  width: 42px;
  height: 42px;
}

.contact-icon svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.contact-label {
  display: block;
  margin-bottom: 0.25rem;
}

.contact-list a,
.contact-list span:last-child {
  color: var(--text);
  line-height: 1.6;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.4rem, 3vw, 3rem);
  align-items: start;
}

.services-list-wrap {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  margin-top: 2.6rem;
}

.services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.services-list li {
  position: relative;
  padding: 0.2rem 0 0.2rem 1.55rem;
  border-radius: 0;
  background: transparent;
  border: 0;
  min-height: 0;
  display: flex;
  align-items: center;
  line-height: 1.4;
  font-size: 0.93rem;
}

.services-list li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 0.64rem;
  height: 0.64rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 192, 0, 0.12);
}

.section--contact {
  padding-bottom: 4rem;
}

.work-block {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
  padding-top: 1.35rem;
}

.work-copy {
  display: grid;
  justify-items: center;
  text-align: center;
}

.work-copy h3,
.contact-copy h3 {
  max-width: 100%;
  overflow-wrap: break-word;
}

.work-gallery-stage {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: start;
  padding-bottom: 0.65rem;
  border-bottom: 5px solid var(--accent);
  transition:
    grid-template-columns 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    gap 0.45s ease;
}

.work-gallery-stage.is-open {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.work-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: stretch;
  padding-bottom: 0;
  border-bottom: 0;
}

.work-gallery--preview {
  position: relative;
  grid-template-columns: 1fr;
}

.work-gallery--preview img {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: 220px;
  object-fit: contain;
  object-position: center;
  justify-self: stretch;
}

.work-gallery-stage.is-open .work-gallery--preview img {
  width: 100%;
  max-height: 220px;
}

.work-gallery img {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: 220px;
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  transition: transform var(--transition), filter var(--transition);
}

.work-gallery img:hover {
  transform: translateY(-6px);
  filter: saturate(1.08);
}

.work-gallery__extra {
  margin-top: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-column: span 3;
  align-items: start;
  max-height: none;
  overflow: visible;
  opacity: 1;
  transform: none;
  width: 100%;
  display: grid;
  padding-bottom: 0;
  border-bottom: 0;
  transition:
    max-height 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.work-gallery__extra[hidden] {
  display: grid;
}

.work-gallery__extra.is-open {
  max-height: none;
  opacity: 1;
  transform: none;
}

.work-toggle {
  display: none;
  justify-self: start;
  min-height: 42px;
  padding: 0.7rem 1.15rem;
  border: 1px solid rgba(255, 192, 0, 0.35);
  border-radius: 999px;
  background: transparent;
  color: var(--accent);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background-color var(--transition),
    color var(--transition),
    transform var(--transition);
}

.work-toggle:hover {
  background: rgba(255, 192, 0, 0.12);
  transform: translateY(-2px);
}

.contact-copy {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  padding: 0.75rem 0 0.25rem;
}

.contact-grid {
  align-items: stretch;
  gap: clamp(1.4rem, 3vw, 2.4rem);
}

.contact-media img {
  min-height: 100%;
}

.contact-copy h3 {
  margin-bottom: 0;
}

.contact-copy .contact-list {
  margin-top: 0.2rem;
  gap: 0.85rem;
}

@media (max-width: 1024px) {
  .hero__content,
  .services-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: calc(var(--header-height) + 4rem);
  }

  .section--services {
    min-height: 0;
    align-items: stretch;
  }

  .hero__panel {
    max-width: 540px;
  }

  .hero__image {
    height: 100%;
    transform: none;
    object-position: center top;
  }

  .hero__panel img,
  .work-gallery img,
  .contact-media img {
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
  }

  .services-list-wrap {
    margin-top: 0.75rem;
  }

  .work-copy {
    justify-items: start;
    text-align: left;
  }

}

@media (max-width: 840px) {
  .site-header {
    padding: 0 0.75rem;
  }

  .site-header::before {
    inset: 0;
    border-radius: 0;
  }

  .site-nav {
    top: calc(100% + 0.75rem);
    right: 0.75rem;
    left: auto;
    width: min(260px, calc(100vw - 1.5rem));
    border-radius: 24px;
    background: rgba(10, 10, 10, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.14);
  }

  .services-list {
    grid-template-columns: 1fr;
  }

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

  .work-gallery-stage.is-open {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .work-gallery--preview img {
    max-height: 260px;
  }

  .work-gallery__extra {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-column: span 3;
  }

  .work-gallery__extra img {
    max-height: 210px;
  }

}

@media (max-width: 640px) {
  :root {
    --header-height: 72px;
    --shell: min(100vw - 1.25rem, 1000px);
  }

  .brand {
    padding: 0.2rem 0;
  }

  .brand__logo {
    width: 106px;
  }

  .nav-toggle {
    min-width: 102px;
    height: 42px;
    padding: 0 0.9rem;
  }

  .nav-toggle__label {
    font-size: 0.84rem;
  }

  h1 {
    font-size: clamp(2.15rem, 13vw, 3.4rem);
  }

  h2 {
    font-size: clamp(1.75rem, 9vw, 2.5rem);
  }

  .hero__lede--profile {
    line-height: 1.7;
  }

  .hero__paragraph + .hero__paragraph {
    margin-top: 0.85rem;
  }

  .text-accent--profile {
    text-shadow: none;
    -webkit-text-stroke: 0;
  }

  .section {
    padding: 4rem 0;
  }

  .hero__content {
    gap: 1.2rem;
  }

  .hero__panel {
    width: 100%;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .work-block {
    justify-items: center;
  }

  .work-copy {
    width: min(100%, 25rem);
  }

  .work-gallery {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .work-gallery-stage.is-open {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    width: min(100%, 25rem);
    padding-bottom: 0.65rem;
    border-bottom: 5px solid var(--accent);
  }

  .work-gallery-stage {
    grid-template-columns: 1fr;
    gap: 0;
    width: min(100%, 25rem);
    justify-self: center;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .work-gallery__extra {
    display: contents;
    grid-template-columns: unset;
    grid-column: auto;
    max-height: none;
    overflow: visible;
    opacity: 1;
    transform: none;
  }

  .work-gallery__extra[hidden] {
    display: none;
  }

  .work-gallery__extra img {
    opacity: 0;
    transform: translateX(-14px);
    transition:
      opacity 0.4s ease,
      transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .work-gallery__extra.is-open img {
    opacity: 1;
    transform: translateX(0);
  }

  .work-gallery--preview img {
    width: auto;
    max-width: 100%;
    max-height: 220px;
    justify-self: center;
  }

  .work-gallery--preview {
    width: fit-content;
    max-width: 100%;
    justify-self: center;
    padding-bottom: 0.65rem;
    border-bottom: 5px solid var(--accent);
  }

  .work-gallery-stage.is-open .work-gallery--preview {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .work-gallery__extra img {
    max-height: 160px;
  }

  .work-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 3.2rem;
    min-width: 3.2rem;
    height: 3.2rem;
    min-height: 3.2rem;
    padding: 0;
    justify-self: auto;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(126, 126, 126, 0.22);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0;
    line-height: 1;
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  }

  .work-toggle::before {
    content: "+";
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
  }

  .work-gallery--preview:hover .work-toggle,
  .work-toggle:hover,
  .work-gallery--preview:focus-within .work-toggle,
  .work-toggle:focus-visible,
  .work-toggle[aria-expanded="true"] {
    border-color: rgba(255, 192, 0, 0.56);
    background: rgba(255, 192, 0, 0.24);
    color: var(--accent);
    transform: translate(-50%, -50%) scale(1.04);
  }

  .work-toggle[aria-expanded="true"]::before {
    content: "-";
  }

  .contact-list li,
  .contact-list--large li {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 0.8rem;
    align-items: center;
  }

  .contact-list li > div,
  .contact-list--large li > div {
    display: grid;
    align-content: center;
    gap: 0.08rem;
  }

  .contact-label {
    margin-bottom: 0;
    letter-spacing: 0.14em;
  }

  .contact-list a,
  .contact-list span:last-child {
    line-height: 1.35;
  }

  .contact-media--desktop {
    display: none;
  }

  .contact-copy {
    padding: 1.15rem 1rem 1rem;
    border-radius: var(--radius);
    background:
      linear-gradient(180deg, rgba(8, 8, 8, 0.6), rgba(8, 8, 8, 0.72)),
      url("assets/images/contact-bg.jpg") center center / cover no-repeat;
    box-shadow: var(--shadow);
  }

  .contact-icon {
    width: 44px;
    height: 44px;
  }

  .about-card,
  .services-list-wrap {
    padding: 1rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero__image {
    transform: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
