:root {
  --ink: #080b10;
  --muted: #62656c;
  --line: #dad6cf;
  --gold: #c7842a;
  --gold-dark: #a6671f;
  --paper: #ffffff;
  --soft: #f6f1eb;
  --panel: #f3eee7;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

body {
  margin: 0;
  min-width: 320px;
}

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

img,
svg {
  display: block;
}

.site-header {
  height: 70px;
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr) 132px;
  align-items: center;
  gap: 20px;
  padding: 0 52px;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(225, 221, 216, .85);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  color: var(--gold-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -.04em;
}

.brand-name {
  color: #101318;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: #0b0d11;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid #d8d1c7;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}

.request-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.request-button,
.button-gold {
  background: linear-gradient(180deg, #ce8f36, #b87525);
  color: #fff;
}

.contact-bar {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 8px 52px;
  background: linear-gradient(180deg, #c98a32, #b87525);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-bar > * {
  white-space: nowrap;
}

.contact-bar a {
  color: #fff;
}

.contact-bar-action {
  padding: 5px 13px;
  border: 1px solid rgba(255, 255, 255, .72);
}

.button-outline {
  min-width: 170px;
  gap: 18px;
  border-color: var(--gold);
  background: rgba(255, 255, 255, .68);
  color: #171717;
}

.hero {
  min-height: 404px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #e3dfd8;
}

.hero img {
  width: 100%;
  height: 404px;
  object-fit: cover;
  object-position: center 50%;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .92) 25%, rgba(255, 255, 255, .52) 48%, rgba(255, 255, 255, .08) 70%),
    linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .05));
}

.hero-copy {
  width: min(620px, calc(100% - 80px));
  position: absolute;
  top: 48px;
  left: 52px;
}

.eyebrow {
  margin: 0 0 10px;
  color: #bf761c;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: .20em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: #070a10;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 56px);
  line-height: .96;
  letter-spacing: -.05em;
}

.intro {
  max-width: 405px;
  margin: 16px 0 0;
  color: #262b31;
  font-size: 15px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 28px;
  margin-top: 18px;
}

.difference {
  display: grid;
  grid-template-columns: minmax(260px, 38%) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 30px 52px;
  border-bottom: 1px solid #ddd8d0;
  background: #fff;
}

.difference-image {
  aspect-ratio: 1.55;
  overflow: hidden;
  border: 1px solid #ded8cf;
}

.difference-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.difference-copy .eyebrow {
  margin-bottom: 9px;
  font-size: 12px;
  letter-spacing: .18em;
}

.difference-copy h2 {
  max-width: 650px;
  margin: 0;
  color: #080b10;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.2vw, 43px);
  line-height: 1.02;
  letter-spacing: -.04em;
}

.difference-copy p:not(.eyebrow) {
  max-width: 730px;
  margin: 15px 0 0;
  color: #20252d;
  font-size: 14px;
  line-height: 1.65;
}

.trusted {
  padding: 20px 48px 27px;
  border-bottom: 1px solid #ddd8d0;
  background: linear-gradient(180deg, #fff 0%, #fbfbfa 100%);
}

.trusted h2,
.services h2 {
  margin: 0;
  color: #101318;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .22em;
  text-align: center;
  text-transform: uppercase;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  margin-top: 22px;
}

.client-logo {
  min-height: 86px;
  display: grid;
  place-items: center;
  padding: 12px 18px;
  border-right: 1px solid var(--line);
  opacity: .92;
}

.client-logo:last-child {
  border-right: 0;
}

.client-logo img {
  width: auto;
  max-width: min(230px, 100%);
  max-height: 64px;
  object-fit: contain;
  object-position: center;
}

.client-logo .logo-abg {
  max-width: min(285px, 100%);
  max-height: 74px;
  transform: translateY(1px);
}

.client-logo .logo-amazon {
  max-width: min(205px, 100%);
  max-height: 56px;
}

.client-logo .logo-emory {
  max-width: min(285px, 100%);
  max-height: 62px;
  transform: translateY(5px);
}

.quote-carousel {
  min-height: 164px;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) 78px;
  align-items: center;
  padding: 26px 42px;
  border-bottom: 1px solid #d6c5a7;
  background:
    linear-gradient(90deg, rgba(5, 7, 11, .98), rgba(16, 17, 19, .94), rgba(5, 7, 11, .98)),
    #090b0f;
  color: #fff;
}

.quote-viewport {
  min-height: 124px;
  position: relative;
  overflow: hidden;
}

.quote-slide {
  width: 100%;
  margin: 0;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateX(18px);
  transition: opacity .45s ease, transform .45s ease;
  text-align: center;
  pointer-events: none;
}

.quote-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.quote-slide blockquote {
  max-width: 760px;
  margin: 0;
  position: relative;
  color: #f4efe8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.9vw, 24px);
  line-height: 1.25;
}

.quote-slide blockquote::before {
  content: "“";
  position: absolute;
  top: -13px;
  left: -58px;
  color: #d49a42;
  font-size: 74px;
  line-height: 1;
}

.quote-slide figcaption {
  margin-top: 9px;
  color: #d49a42;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.carousel-control {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.carousel-control span {
  width: 20px;
  height: 20px;
  border-top: 2px solid rgba(255, 255, 255, .7);
  border-left: 2px solid rgba(255, 255, 255, .7);
}

.carousel-prev span {
  transform: rotate(-45deg);
}

.carousel-next {
  justify-self: end;
}

.carousel-next span {
  transform: rotate(135deg);
}

.carousel-control:hover span {
  border-color: #d49a42;
}

.services {
  padding: 28px 39px 25px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(252, 251, 249, .92)),
    radial-gradient(circle at 50% 0%, rgba(196, 132, 52, .10), transparent 30%);
}

.services h2 {
  color: #c27b1e;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .08em;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin-top: 24px;
}

.service-card {
  min-height: 150px;
  padding: 0 20px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.service-card:last-child {
  border-right: 0;
}

.service-card svg {
  width: 39px;
  height: 39px;
  margin: 0 auto 12px;
  stroke: var(--gold);
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  min-height: 36px;
  margin: 0 0 9px;
  color: #080b10;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.service-card p {
  margin: 0 auto;
  max-width: 140px;
  color: #22272f;
  font-size: 12px;
  line-height: 1.5;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 22px;
  padding: 24px 34px 23px;
  background: linear-gradient(90deg, #f3eee7, #fbf8f5);
}

.stats-row div {
  display: grid;
  place-items: center;
  border-right: 1px solid #d4b992;
}

.stats-row div:last-child {
  border-right: 0;
}

.stats-row strong {
  color: var(--gold);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.stats-row span {
  margin-top: 8px;
  color: #11141a;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.work {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 27px;
  padding: 3px 48px 14px;
  background: #fff;
}

.quote-panel {
  padding-top: 23px;
}

.quote-mark {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 51px;
  line-height: .7;
}

blockquote {
  margin: 13px 0 0;
  color: #171a20;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  line-height: 1.62;
}

cite {
  display: block;
  margin: 15px 0 25px;
  color: #c27b1e;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.5;
  text-transform: uppercase;
}

.quote-panel .button {
  min-width: 158px;
  min-height: 37px;
  padding-inline: 21px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.work-card {
  min-height: 239px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: #111;
}

.work-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.work-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, .78) 100%);
}

.work-card span {
  width: 100%;
  position: absolute;
  z-index: 1;
  bottom: 16px;
  left: 0;
  padding: 0 11px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.why-ges {
  display: grid;
  grid-template-columns: minmax(270px, 34%) minmax(0, 1fr);
  gap: 34px;
  padding: 38px 48px;
  border-top: 1px solid #e4ded6;
  background:
    linear-gradient(180deg, #fbfaf8, #fff),
    radial-gradient(circle at 12% 15%, rgba(199, 132, 42, .12), transparent 28%);
}

.why-ges-intro {
  align-self: start;
}

.why-ges-intro .eyebrow {
  margin-bottom: 10px;
  font-size: 13px;
  letter-spacing: .18em;
}

.why-ges-intro h2 {
  margin: 0;
  color: #080b10;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(31px, 3vw, 44px);
  line-height: 1.02;
  letter-spacing: -.04em;
}

.why-ges-intro p {
  margin: 17px 0 24px;
  color: #20252d;
  font-size: 14px;
  line-height: 1.65;
}

.why-ges-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid #ded8cf;
  background: rgba(255, 255, 255, .78);
}

.why-ges-grid article {
  min-height: 180px;
  padding: 22px 20px 20px;
  border-right: 1px solid #ded8cf;
  border-bottom: 1px solid #ded8cf;
}

.why-ges-grid article:nth-child(3n) {
  border-right: 0;
}

.why-ges-grid article:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.why-ges-grid span {
  color: #c27b1e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.why-ges-grid h3 {
  margin: 12px 0 8px;
  color: #080b10;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.why-ges-grid p {
  margin: 0;
  color: #252a31;
  font-size: 11px;
  line-height: 1.65;
}

.instagram {
  padding: 32px 48px 34px;
  border-top: 1px solid #e5e1db;
  background: linear-gradient(180deg, #fff, #fbfaf8);
}

.instagram-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 8px 24px;
  margin-bottom: 20px;
}

.instagram-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
  font-size: 13px;
  letter-spacing: .18em;
}

.instagram-heading h2 {
  margin: 0;
  color: #080b10;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  line-height: 1;
  letter-spacing: -.03em;
}

.instagram-heading a {
  color: #b87425;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.instagram-card {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  border: 1px solid #ded8cf;
  background: #eee8df;
}

.instagram-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}

.instagram-card:nth-child(3) img {
  object-position: 68% 18%;
}

.instagram-card:hover img {
  transform: scale(1.04);
}

.placeholder-card {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(199, 132, 42, .92), rgba(80, 49, 24, .92)),
    #b87425;
}

.placeholder-card span {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  letter-spacing: -.05em;
}

.assurance {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 22px 64px 21px;
  border-top: 1px solid #e0dcd5;
  background: #fbfaf8;
}

.assurance div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 44px;
  border-right: 1px solid var(--line);
}

.assurance div:last-child {
  border-right: 0;
}

.assurance svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold);
  stroke-width: 1.75;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.assurance span {
  color: #1b1f26;
  font-size: 12px;
  line-height: 1.4;
  text-transform: uppercase;
}

.site-footer {
  background: #07111f;
  color: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, 1fr));
  gap: 42px;
  padding: 43px 52px 38px;
}

.footer-logo {
  display: inline-flex;
}

.footer-logo .brand-mark {
  color: #d49a42;
}

.footer-logo .brand-name {
  color: #fff;
}

.footer-brand p {
  max-width: 430px;
  margin: 21px 0 23px;
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
  line-height: 1.7;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-column h2 {
  margin: 0 0 5px;
  color: #d49a42;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  line-height: 1.35;
}

.footer-column a:hover {
  color: #fff;
}

.footer-contact a:first-of-type {
  color: #fff;
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 15px 52px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .67);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav-links .is-active {
  color: var(--gold-dark);
}

.about-hero {
  min-height: 500px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #ddd8d0;
  background: #080b10;
}

.about-hero img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center 28%;
}

.about-hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 11, 16, .58), rgba(8, 11, 16, .30) 48%, rgba(8, 11, 16, .06)),
    linear-gradient(180deg, rgba(8, 11, 16, .04), rgba(8, 11, 16, .42));
}

.about-hero-copy {
  width: min(760px, calc(100% - 104px));
  position: absolute;
  left: 52px;
  bottom: 58px;
  color: #fff;
}

.about-hero-copy h1 {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6vw, 76px);
  line-height: .96;
  letter-spacing: -.05em;
}

.about-hero-copy p:not(.eyebrow) {
  max-width: 575px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: 17px;
  line-height: 1.6;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 48px;
  align-items: stretch;
  padding: 54px 52px;
  border-bottom: 1px solid #ddd8d0;
  background: #fff;
}

.about-story-copy h2,
.section-heading h2,
.about-approach-copy h2 {
  margin: 0;
  color: #080b10;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -.04em;
}

.about-story-copy p:not(.eyebrow),
.about-approach-copy p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #252a31;
  font-size: 15px;
  line-height: 1.72;
}

.about-story-panel {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 34px;
  border: 1px solid #d9c7a8;
  background: linear-gradient(180deg, #f5efe7, #fffaf4);
}

.about-story-panel strong {
  color: var(--gold);
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
}

.about-story-panel span {
  margin-bottom: 18px;
  color: #171a20;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.45;
  text-transform: uppercase;
}

.about-values {
  padding: 52px;
  border-bottom: 1px solid #ddd8d0;
  background: #fbfaf8;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(240px, 35%) minmax(0, 1fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 28px;
}

.about-value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid #ded8cf;
  background: #fff;
}

.about-value-grid article {
  min-height: 245px;
  padding: 26px 24px;
  border-right: 1px solid #ded8cf;
}

.about-value-grid article:last-child {
  border-right: 0;
}

.about-value-grid span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
}

.about-value-grid h3 {
  margin: 40px 0 0;
  color: #080b10;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -.03em;
}

.about-value-grid p {
  margin: 15px 0 0;
  color: #4c5057;
  font-size: 13px;
  line-height: 1.65;
}

.about-approach {
  display: grid;
  grid-template-columns: minmax(280px, 42%) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  padding: 56px 52px;
  background: #fff;
}

.about-approach-image {
  aspect-ratio: 1.18;
  overflow: hidden;
  border: 1px solid #ded8cf;
}

.about-approach-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-approach-copy ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.about-approach-copy li {
  padding: 13px 14px;
  border-left: 3px solid var(--gold);
  background: #f7f3ee;
  color: #171a20;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.about-contact-bar span:first-child {
  white-space: normal;
}

.services-hero {
  min-height: 540px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #ddd8d0;
  background: #080b10;
}

.services-hero img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center 48%;
}

.services-hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .97), rgba(255, 255, 255, .82) 43%, rgba(255, 255, 255, .20) 72%),
    linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .04));
}

.services-hero-copy {
  width: min(690px, calc(100% - 104px));
  position: absolute;
  left: 52px;
  top: 64px;
}

.services-hero-copy h1 {
  max-width: 650px;
  margin: 0;
  color: #080b10;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6vw, 74px);
  line-height: .96;
  letter-spacing: -.05em;
}

.services-hero-copy p:not(.eyebrow) {
  max-width: 565px;
  margin: 24px 0 0;
  color: #242930;
  font-size: 16px;
  line-height: 1.65;
}

.service-intro {
  display: grid;
  grid-template-columns: minmax(260px, 38%) minmax(0, 1fr);
  gap: 42px;
  align-items: end;
  padding: 52px;
  border-bottom: 1px solid #ddd8d0;
  background: #fff;
}

.service-intro h2,
.service-team-copy h2 {
  margin: 0;
  color: #080b10;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -.04em;
}

.service-intro > p,
.service-team-copy p {
  margin: 0;
  color: #252a31;
  font-size: 15px;
  line-height: 1.72;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid #ddd8d0;
  background: #fbfaf8;
}

.service-detail-grid article {
  min-height: 315px;
  padding: 34px 28px 30px;
  border-right: 1px solid #ded8cf;
  background: #fff;
}

.service-detail-grid article:last-child {
  border-right: 0;
}

.service-detail-grid-expanded article {
  min-height: 350px;
  border-bottom: 1px solid #ded8cf;
}

.service-detail-grid-expanded article:nth-child(4n) {
  border-right: 0;
}

.service-detail-grid-expanded article:nth-last-child(-n + 4) {
  border-bottom: 0;
}

.service-detail-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 30px;
  border: 1px solid #d5ba91;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}

.service-detail-grid h3 {
  margin: 54px 0 0;
  color: #080b10;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  line-height: 1.02;
  letter-spacing: -.04em;
}

.service-detail-grid p {
  margin: 16px 0 0;
  color: #4c5057;
  font-size: 13px;
  line-height: 1.68;
}

.industries-section {
  padding: 56px 52px;
  border-bottom: 1px solid #ddd8d0;
  background: #fbfaf8;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 30px;
  border: 1px solid #ded8cf;
  background: #ded8cf;
}

.industries-grid span {
  min-height: 86px;
  display: flex;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  color: #11141a;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.service-difference {
  border-bottom: 1px solid #ddd8d0;
}

.service-team {
  display: grid;
  grid-template-columns: minmax(280px, 40%) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  padding: 56px 52px;
  background: #fff;
}

.service-team-image {
  aspect-ratio: 1.05;
  overflow: hidden;
  border: 1px solid #ded8cf;
  background: #f1ede8;
}

.service-team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 26%;
}

.team-benefits {
  display: grid;
  gap: 12px;
  margin: 26px 0 28px;
}

.team-benefits div {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 15px 18px;
  border-left: 3px solid var(--gold);
  background: #f7f3ee;
}

.team-benefits strong {
  color: #11141a;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.team-benefits span {
  color: #4c5057;
  font-size: 13px;
  line-height: 1.5;
}

.contact-hero {
  min-height: 510px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #ddd8d0;
  background: #080b10;
}

.contact-hero img {
  width: 100%;
  height: 510px;
  object-fit: cover;
  object-position: center 22%;
}

.contact-hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 11, 16, .86), rgba(8, 11, 16, .56) 42%, rgba(8, 11, 16, .12) 76%),
    linear-gradient(180deg, rgba(8, 11, 16, .10), rgba(8, 11, 16, .44));
}

.contact-hero-copy {
  width: min(780px, calc(100% - 104px));
  position: absolute;
  left: 52px;
  bottom: 58px;
  color: #fff;
}

.contact-hero-copy .eyebrow {
  color: var(--gold);
}

.contact-hero-copy h1 {
  max-width: 780px;
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 6vw, 78px);
  line-height: .92;
  letter-spacing: -.05em;
  white-space: nowrap;
}

.contact-hero-copy p:not(.eyebrow) {
  max-width: 555px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: 16px;
  line-height: 1.65;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 46%) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
  padding: 58px 52px;
  background: #fff;
}

.contact-intro h2 {
  max-width: 560px;
  margin: 0;
  color: #080b10;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.8vw, 62px);
  line-height: .98;
  letter-spacing: -.04em;
}

.contact-intro > p:not(.eyebrow) {
  max-width: 600px;
  margin: 22px 0 0;
  color: #343941;
  font-size: 15px;
  line-height: 1.72;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 30px;
  border: 1px solid #ded8cf;
  background: #ded8cf;
}

.contact-info-grid article {
  min-height: 138px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  padding: 22px;
  background: #fbfaf8;
}

.contact-info-grid span,
.contact-form-panel label {
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-info-grid a,
.contact-info-grid strong,
.contact-info-grid address {
  margin: 0;
  color: #101318;
  font-size: 15px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.45;
  text-decoration: none;
}

.contact-info-grid a:hover {
  color: var(--gold-dark);
}

.contact-form-panel {
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid #ded8cf;
  background: #f7f3ee;
}

.form-row {
  display: grid;
  gap: 8px;
}

.contact-form-panel input,
.contact-form-panel textarea {
  width: 100%;
  border: 1px solid #d7d0c6;
  border-radius: 0;
  background: #fff;
  color: #101318;
  font: inherit;
  font-size: 15px;
  line-height: 1.4;
}

.contact-form-panel input {
  min-height: 46px;
  padding: 11px 13px;
}

.contact-form-panel textarea {
  min-height: 148px;
  padding: 13px;
  resize: vertical;
}

.contact-form-panel input:focus,
.contact-form-panel textarea:focus {
  outline: 2px solid rgba(182, 129, 45, .35);
  outline-offset: 0;
  border-color: var(--gold-dark);
}

.contact-form-panel .button {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.google-review-widget {
  min-width: 220px;
  min-height: 50px;
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 20;
  display: grid;
  grid-template-columns: 52px 1px 1fr;
  align-items: center;
  overflow: hidden;
  border: 1px solid #d7d7d7;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .16);
  color: #111;
}

.google-mark {
  display: grid;
  place-items: center;
  font-size: 31px;
  font-weight: 900;
  letter-spacing: -.08em;
  background: conic-gradient(#4285f4 0 25%, #34a853 0 50%, #fbbc05 0 75%, #ea4335 0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.review-divider {
  align-self: stretch;
  background: #d7d7d7;
}

.review-content {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 4px 7px;
  padding: 8px 11px;
}

.review-score {
  color: #f57b20;
  font-size: 20px;
  line-height: 1;
}

.review-stars {
  display: flex;
  gap: 2px;
  color: #f57b20;
  font-size: 24px;
  line-height: .8;
}

.half-star {
  position: relative;
  color: #d9d9d9;
}

.half-star::before {
  width: 50%;
  position: absolute;
  inset: 0;
  overflow: hidden;
  color: #f57b20;
  content: "★";
}

.review-count {
  grid-column: 1 / -1;
  color: #111;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
}

.chat-widget {
  min-width: 204px;
  min-height: 50px;
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  overflow: hidden;
  border: 1px solid #d7d7d7;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .16);
  color: #111;
}

.chat-icon {
  height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #c98a32, #b87525);
}

.chat-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chat-content {
  display: grid;
  gap: 2px;
  padding: 8px 11px;
}

.chat-content strong {
  color: #111;
  font-size: 15px;
  line-height: 1;
}

.chat-content span {
  color: #555b64;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 190px minmax(0, 1fr) 132px;
    gap: 16px;
    padding-inline: 40px;
  }

  .nav-links {
    gap: 12px;
    font-size: 13px;
  }

  .request-button {
    padding-inline: 18px;
  }

  .contact-bar {
    gap: 15px;
    padding-inline: 40px;
    font-size: 10px;
  }

  .quote-carousel {
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    padding-inline: 22px;
  }

  .service-card {
    padding-inline: 12px;
  }

  .difference {
    padding-inline: 40px;
  }

  .why-ges {
    padding-inline: 40px;
  }

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

  .why-ges-grid article:nth-child(3n) {
    border-right: 1px solid #ded8cf;
  }

  .why-ges-grid article:nth-child(2n) {
    border-right: 0;
  }

  .why-ges-grid article:nth-last-child(-n + 3) {
    border-bottom: 1px solid #ded8cf;
  }

  .why-ges-grid article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .footer-main {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footer-contact {
    grid-column: 2 / 4;
  }
}

@media (max-width: 860px) {
  .site-header {
    height: auto;
    grid-template-columns: 1fr auto;
    gap: 12px 16px;
    padding: 14px 24px;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-self: end;
  }

  .site-header.is-menu-open .menu-toggle span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .menu-toggle span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links {
    display: none;
    grid-column: 1 / -1;
    order: 3;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid #e1ddd8;
    border-bottom: 1px solid #e1ddd8;
    background: #fff;
  }

  .site-header.is-menu-open .nav-links {
    display: grid;
  }

  .nav-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
    border-top: 1px solid #eee9e2;
  }

  .nav-links a:first-child {
    border-top: 0;
  }

  .request-button {
    grid-column: 1 / -1;
    justify-self: start;
    order: 2;
  }

  .contact-bar {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px 16px;
    padding: 10px 28px;
  }

  .hero img {
    height: 560px;
    object-position: 62% center;
  }

  .hero-copy {
    left: 28px;
    top: 56px;
    width: min(470px, calc(100% - 56px));
  }

  .hero-scrim {
    background: linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.82) 58%, rgba(255,255,255,.2) 100%);
  }

  .quote-carousel {
    min-height: auto;
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    padding: 30px 12px;
  }

  .quote-viewport {
    min-height: 230px;
  }

  .quote-slide blockquote::before {
    position: static;
    display: block;
    margin-bottom: -12px;
    font-size: 54px;
  }

  .logo-row,
  .service-grid,
  .stats-row,
  .work,
  .work-grid,
  .instagram-grid,
  .assurance {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-logo,
  .service-card,
  .stats-row div,
  .assurance div {
    border-right: 0;
  }

  .client-logo:nth-child(odd),
  .service-card:nth-child(odd),
  .stats-row div:nth-child(odd),
  .assurance div:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .service-card {
    border-bottom: 1px solid var(--line);
    padding-block: 18px;
  }

  .work {
    padding-inline: 28px;
  }

  .why-ges {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-inline: 28px;
  }

  .difference {
    gap: 22px;
    grid-template-columns: 1fr;
    padding-inline: 28px;
  }

  .about-story,
  .about-approach,
  .service-intro,
  .service-team,
  .contact-layout,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .about-story,
  .about-values,
  .about-approach,
  .service-intro,
  .service-team,
  .contact-layout {
    padding-inline: 28px;
  }

  .about-value-grid,
  .contact-info-grid,
  .industries-grid,
  .service-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-value-grid article:nth-child(2n),
  .service-detail-grid-expanded article:nth-child(4n),
  .service-detail-grid article:nth-child(2n) {
    border-right: 0;
  }

  .service-detail-grid-expanded article:nth-child(odd) {
    border-right: 1px solid #ded8cf;
  }

  .service-detail-grid-expanded article:nth-last-child(-n + 4) {
    border-bottom: 1px solid #ded8cf;
  }

  .service-detail-grid-expanded article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .about-value-grid article:nth-child(-n + 2),
  .service-detail-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid #ded8cf;
  }

  .industries-section {
    padding-inline: 28px;
  }

  .instagram {
    padding-inline: 28px;
  }

  .instagram-heading {
    grid-template-columns: 1fr;
  }

  .quote-panel {
    grid-column: 1 / -1;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    padding-inline: 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    padding-inline: 28px;
  }

  .google-review-widget {
    min-width: 210px;
    min-height: 49px;
    grid-template-columns: 48px 1px 1fr;
    left: 14px;
    bottom: 14px;
  }

  .google-mark {
    font-size: 29px;
  }

  .review-content {
    padding: 7px 10px;
  }

  .review-score {
    font-size: 19px;
  }

  .review-stars {
    font-size: 22px;
  }

  .review-count {
    font-size: 11px;
  }

  .chat-widget {
    min-width: 196px;
    min-height: 49px;
    grid-template-columns: 48px 1fr;
    right: 14px;
    bottom: 14px;
  }

  .chat-icon svg {
    width: 23px;
    height: 23px;
  }

  .chat-content strong {
    font-size: 15px;
  }
}

@media (max-width: 560px) {
  .site-header,
  .contact-bar,
  .trusted,
  .difference,
  .services,
  .work,
  .why-ges,
  .instagram,
  .assurance {
    padding-inline: 20px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .request-button {
    justify-self: start;
  }

  .hero-copy {
    left: 20px;
    top: 42px;
    width: calc(100% - 40px);
  }

  .about-hero {
    min-height: 560px;
  }

  .about-hero img {
    height: 560px;
    object-position: center 32%;
  }

  .about-hero-copy {
    left: 20px;
    bottom: 44px;
    width: calc(100% - 40px);
  }

  .about-hero-copy h1 {
    font-size: 46px;
  }

  .services-hero {
    min-height: 560px;
  }

  .services-hero img {
    height: 560px;
    object-position: 62% center;
  }

  .services-hero-scrim {
    background: linear-gradient(90deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .78) 70%, rgba(255, 255, 255, .16));
  }

  .services-hero-copy {
    left: 20px;
    top: 48px;
    width: calc(100% - 40px);
  }

  .services-hero-copy h1 {
    font-size: 48px;
  }

  .contact-hero {
    min-height: 0;
  }

  .contact-hero img {
    height: auto;
    object-fit: contain;
    object-position: center center;
  }

  .contact-hero-scrim {
    display: none;
  }

  .contact-hero-copy {
    position: relative;
    left: auto;
    bottom: auto;
    width: auto;
    padding: 28px 20px 38px;
  }

  .contact-hero-copy h1 {
    font-size: 52px;
    white-space: normal;
  }

  .about-story,
  .about-values,
  .about-approach,
  .service-intro,
  .service-team,
  .contact-layout {
    padding-inline: 20px;
  }

  .about-value-grid,
  .about-approach-copy ul,
  .contact-info-grid,
  .industries-grid,
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .about-value-grid article,
  .about-value-grid article:nth-child(2n),
  .service-detail-grid-expanded article:nth-child(odd),
  .service-detail-grid article,
  .service-detail-grid article:nth-child(2n) {
    border-right: 0;
  }

  .about-value-grid article,
  .service-detail-grid article {
    min-height: 0;
    border-bottom: 1px solid #ded8cf;
  }

  .about-value-grid article:last-child,
  .contact-info-grid article:last-child,
  .service-detail-grid article:last-child {
    border-bottom: 0;
  }

  .industries-section {
    padding-inline: 20px;
  }

  .industries-grid span {
    min-height: 70px;
  }

  .contact-form-panel {
    padding: 22px;
  }

  .team-benefits div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .quote-carousel {
    min-height: auto;
    padding-block: 32px;
  }

  .quote-viewport {
    min-height: 318px;
  }

  .quote-slide blockquote {
    font-size: 18px;
    line-height: 1.32;
  }

  .quote-slide figcaption {
    margin-top: 12px;
    line-height: 1.45;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 12px;
  }

  .logo-row,
  .difference,
  .service-grid,
  .stats-row,
  .work,
  .work-grid,
  .instagram-grid,
  .assurance {
    grid-template-columns: 1fr;
  }

  .client-logo:nth-child(odd),
  .service-card:nth-child(odd),
  .stats-row div:nth-child(odd),
  .assurance div:nth-child(odd) {
    border-right: 0;
  }

  .client-logo,
  .stats-row div,
  .assurance div {
    border-bottom: 1px solid var(--line);
    padding-block: 13px;
  }

  .client-logo:last-child,
  .stats-row div:last-child,
  .assurance div:last-child {
    border-bottom: 0;
  }

  .work-card {
    min-height: 250px;
  }

  .why-ges-grid {
    grid-template-columns: 1fr;
  }

  .why-ges-grid article,
  .why-ges-grid article:nth-child(2n),
  .why-ges-grid article:nth-child(3n) {
    border-right: 0;
  }

  .why-ges-grid article:nth-last-child(-n + 2) {
    border-bottom: 1px solid #ded8cf;
  }

  .why-ges-grid article:last-child {
    border-bottom: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-inline: 20px;
  }

  .footer-bottom {
    padding-inline: 20px;
  }

  .google-review-widget {
    min-width: 0;
    width: 190px;
    max-width: calc(100% - 28px);
    left: 14px;
    bottom: 14px;
  }

  .review-content {
    gap: 4px 9px;
    padding: 7px 12px 7px 10px;
  }

  .review-score {
    font-size: 17px;
  }

  .review-stars {
    gap: 1px;
    font-size: 19px;
  }

  .chat-widget {
    min-width: 0;
    width: 196px;
    max-width: calc(100% - 28px);
    right: 14px;
    bottom: 72px;
  }
}
