@import url('https://fonts.googleapis.com/css2?family=Anton&family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root {
  --flesh: #ddd0c1;
  --black: #0d1014;
  --gold: #80602c;
  --black-rgb: 13, 16, 20;
  --flesh-rgb: 221, 208, 193;
  --gold-rgb: 128, 96, 44;
  --font: 'Montserrat', Arial, Helvetica, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--flesh);
  color: var(--black);
  font-family: var(--font);
  line-height: 1.55;
  overflow-x: hidden;
}

a,
a:hover,
a:focus,
a:active,
a:visited {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

img {
  max-width: 100%;
}

.container {
  width: min(1180px, calc(100% - 72px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(var(--flesh-rgb), .94);
  border-bottom: 1px solid rgba(var(--black-rgb), .17);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.logo-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--black);
  border-radius: 50%;
  background: var(--black);
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

.logo-copy {
  min-width: 0;
}

.logo-copy strong,
.logo-copy small {
  display: block;
  text-decoration: none;
}

.logo-copy strong {
  font-family: 'Anton', 'Arial Narrow', var(--font);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: .01em;
  line-height: 1.1;
  white-space: nowrap;
}

.logo-copy small {
  margin-top: 5px;
  color: rgba(var(--black-rgb), .66);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .1em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 3vw, 36px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .02em;
}

nav > a:not(.nav-cta) {
  transition: color .2s ease;
}

nav > a:not(.nav-cta):hover {
  color: var(--gold);
}

.nav-cta,
.mobile-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--flesh);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .015em;
  line-height: 1;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.nav-cta {
  padding: 0 18px;
}

.nav-cta:hover,
.mobile-cta:hover,
.button-primary:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.button-arrow,
.link-arrow {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

.mobile-cta {
  display: none;
  padding: 0 14px;
}

.hero {
  padding: clamp(70px, 10vw, 138px) 0 54px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}

.hero-content {
  max-width: 690px;
}

.kicker,
.eyebrow,
.section-label,
.hero-meta,
.about-note-label,
.about-note-foot,
.service-kicker,
.ig-date,
.places span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.kicker,
.eyebrow,
.section-label {
  color: var(--gold);
}

.hero h1,
.about-copy h2,
.heading-block h2,
.contact-intro h2 {
  margin: 24px 0 28px;
  font-family: 'Anton', 'Arial Narrow', var(--font);
  font-size: clamp(47px, 6.7vw, 93px);
  font-weight: 400;
  letter-spacing: .01em;
  line-height: .96;
}

.hero h1 {
  max-width: 9ch;
}

.hero h1 em,
.about-copy h2 em,
.heading-block h2 em,
.contact-intro h2 em {
  color: var(--gold);
  font-style: normal;
}

.hero-text {
  max-width: 510px;
  color: rgba(var(--black-rgb), .76);
  font-size: clamp(16px, 1.7vw, 19px);
  font-weight: 500;
  letter-spacing: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  min-width: 148px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  padding: 0 20px;
  border: 1px solid var(--black);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .015em;
  line-height: 1;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.button-primary {
  background: var(--black);
  color: var(--flesh);
}

.button-secondary {
  background: transparent;
  color: var(--black);
}

.button-secondary:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  min-height: 580px;
  padding: 20px 20px 20px 0;
}

.hero-visual::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 72%;
  height: 87%;
  background: var(--gold);
}

.hero-visual::after {
  content: '';
  position: absolute;
  right: 7%;
  bottom: 3%;
  width: 116px;
  height: 116px;
  border: 1px solid var(--black);
  border-radius: 50%;
}

.hero-frame {
  position: relative;
  z-index: 1;
  width: calc(100% - 38px);
  height: 100%;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid var(--black);
  background: var(--flesh);
}

.hero-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1) contrast(1.12);
  mix-blend-mode: multiply;
}

.hero-wash {
  position: absolute;
  right: -15%;
  bottom: 11%;
  width: 67%;
  height: 17%;
  background: var(--gold);
  opacity: .78;
  transform: rotate(-34deg);
  mix-blend-mode: multiply;
}

.hero-stamp {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: min(235px, 55%);
  padding: 16px 17px 14px;
  border: 1px solid var(--gold);
  background: var(--black);
  color: var(--flesh);
}

.hero-stamp::after {
  content: '';
  width: 29px;
  height: 1px;
  display: block;
  margin-top: 12px;
  background: var(--gold);
}

.hero-stamp strong,
.hero-stamp span {
  display: block;
}

.hero-stamp strong {
  font-family: 'Anton', 'Arial Narrow', var(--font);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .01em;
  line-height: 1.1;
}

.hero-stamp span {
  margin-top: 6px;
  color: rgba(var(--flesh-rgb), .74);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 15px;
  border-top: 1px solid rgba(var(--black-rgb), .58);
  color: rgba(var(--black-rgb), .68);
  font-size: 9px;
}

.hero-meta span:last-child {
  color: var(--black);
}

.statement {
  background: var(--black);
  color: var(--flesh);
}

.statement-inner {
  min-height: 174px;
  display: grid;
  grid-template-columns: minmax(150px, .6fr) 1.4fr;
  align-items: center;
  gap: 40px;
}

.statement-tag {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.statement-copy {
  font-family: 'Anton', 'Arial Narrow', var(--font);
  font-size: clamp(24px, 3.4vw, 45px);
  font-weight: 400;
  letter-spacing: .01em;
  line-height: .98;
}

.statement-copy em {
  color: var(--gold);
  font-style: normal;
}

.section {
  padding: clamp(90px, 12vw, 158px) 0;
}

.section-grid {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 190px;
  align-items: start;
  gap: clamp(32px, 6vw, 92px);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-top: 8px;
  color: var(--black);
}

.section-label span:first-child {
  color: var(--gold);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: .8;
}

.section-label span:last-child {
  font-size: 9px;
  letter-spacing: .11em;
}

.about-copy {
  max-width: 650px;
}

.about-copy .eyebrow,
.heading-block .eyebrow {
  color: var(--gold);
}

.about-copy h2,
.heading-block h2,
.contact-intro h2 {
  margin-top: 20px;
  font-size: clamp(43px, 5.7vw, 76px);
}

.about-copy p {
  max-width: 640px;
  margin-bottom: 19px;
  color: rgba(var(--black-rgb), .78);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
}

.about-copy strong {
  color: var(--black);
  font-weight: 800;
}

.inline-link,
.footer-link,
.instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  border: 0;
  color: var(--black);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  transition: color .2s ease, transform .2s ease;
}

.inline-link:hover,
.footer-link:hover,
.instagram-link:hover,
.text-link:hover {
  color: var(--gold);
}

.inline-link .link-arrow,
.footer-link .link-arrow,
.instagram-link .link-arrow {
  color: var(--gold);
}

.about-note {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 21px;
  border: 1px solid var(--black);
  background: var(--gold);
}

.about-note-label,
.about-note-foot {
  color: rgba(var(--black-rgb), .68);
  font-size: 9px;
}

.about-note strong {
  font-family: 'Anton', 'Arial Narrow', var(--font);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: .01em;
  line-height: .98;
}

.services {
  background: var(--black);
  color: var(--flesh);
}

.services .section-label {
  color: var(--flesh);
}

.services .section-label span:first-child {
  color: var(--gold);
}

.heading-block h2 {
  color: var(--flesh);
}

.heading-block h2 em {
  color: var(--gold);
}

.section-intro {
  max-width: 490px;
  color: rgba(var(--flesh-rgb), .74);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
}

.section-head {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: clamp(32px, 6vw, 92px);
  margin-bottom: 56px;
}

.service-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr 1fr;
  grid-template-rows: repeat(2, minmax(235px, 1fr));
  gap: 14px;
}

.service-card {
  min-height: 258px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 23px;
  border: 1px solid var(--flesh);
  background: var(--flesh);
  color: var(--black);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.service-card:hover {
  background: var(--gold);
  transform: translateY(-4px);
}

.service-card--feature {
  grid-row: span 2;
  min-height: 530px;
  background: var(--gold);
}

.service-card--feature:hover {
  background: var(--flesh);
}

.service-number {
  align-self: flex-start;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: .8;
}

.service-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-kicker {
  margin-bottom: 13px;
  color: rgba(var(--black-rgb), .61);
  font-size: 9px;
}

.service-content strong {
  font-family: 'Anton', 'Arial Narrow', var(--font);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 400;
  letter-spacing: .01em;
  line-height: .98;
}

.service-content > span:last-child {
  max-width: 390px;
  margin-top: 15px;
  color: rgba(var(--black-rgb), .74);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
}

.service-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(var(--black-rgb), .35);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.articles {
  background: var(--flesh);
}

.articles .section-label {
  color: var(--black);
}

.articles-head {
  grid-template-columns: 170px minmax(0, 1fr) auto;
  align-items: end;
}

.articles-head h2 {
  color: var(--black);
}

.articles-head h2 em {
  color: var(--gold);
}

.text-link {
  color: var(--black);
  font-weight: 800;
  text-decoration: none;
  transition: color .2s ease;
}

.desktop-link {
  align-self: end;
  white-space: nowrap;
}

.carousel {
  overflow: hidden;
  margin-inline: calc((100% - 100vw) / 2);
  padding: 16px max(36px, calc((100vw - 1180px) / 2)) 25px;
}

.carousel-track {
  display: flex;
  gap: 15px;
  width: max-content;
  animation: carousel-scroll 54s linear infinite;
}

.carousel:hover .carousel-track,
.carousel:focus-within .carousel-track {
  animation-play-state: paused;
}

.ig-card {
  width: 275px;
  overflow: hidden;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--flesh);
  transition: transform .2s ease, background .2s ease;
}

.ig-card:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-5px);
}

.ig-card img {
  width: 100%;
  aspect-ratio: 1;
  display: block;
  border-bottom: 1px solid var(--black);
  object-fit: cover;
}

.ig-body {
  min-height: 135px;
  display: flex;
  flex-direction: column;
  padding: 16px;
}

.ig-date {
  color: var(--gold);
  font-size: 9px;
}

.ig-card:hover .ig-date {
  color: var(--black);
}

.ig-cap {
  margin-top: 12px;
  font-family: 'Anton', 'Arial Narrow', var(--font);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: .01em;
  line-height: 1.13;
}

@keyframes carousel-scroll {
  to {
    transform: translateX(-50%);
  }
}

.contact {
  background: var(--gold);
  color: var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(390px, 1.1fr);
  align-items: center;
  gap: clamp(42px, 9vw, 135px);
}

.contact-intro h2 {
  max-width: 7ch;
  color: var(--black);
}

.contact-intro h2 em {
  color: var(--flesh);
}

.contact-panel {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--black);
  background: var(--flesh);
}

.contact-panel > p {
  max-width: 450px;
  color: rgba(var(--black-rgb), .76);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
}

.contact-email {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  padding: 20px 0;
  border-top: 1px solid rgba(var(--black-rgb), .55);
  border-bottom: 1px solid rgba(var(--black-rgb), .55);
  font-family: 'Anton', 'Arial Narrow', var(--font);
  font-size: clamp(16px, 2.35vw, 28px);
  font-weight: 400;
  letter-spacing: .01em;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.contact-email .link-arrow {
  color: var(--gold);
}

.places {
  padding-top: 22px;
}

.places span {
  display: block;
  color: rgba(var(--black-rgb), .61);
  font-size: 9px;
}

.places strong {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.instagram-link {
  width: 100%;
  justify-content: flex-start;
  margin-top: 25px;
  padding-top: 19px;
  border-top: 1px solid rgba(var(--black-rgb), .55);
}

.instagram-link strong {
  font-weight: 800;
}

.instagram-link .link-arrow {
  margin-left: auto;
}

footer {
  background: var(--black);
  color: var(--flesh);
  padding: 52px 0 25px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-logo .logo-mark {
  border-color: var(--gold);
}

.footer-logo .logo-copy strong {
  color: var(--flesh);
}

.footer-logo .logo-copy small {
  color: rgba(var(--flesh-rgb), .63);
}

.footer-details,
.footer-contact {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
}

.footer-details p + p {
  margin-top: 4px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-link {
  color: var(--flesh);
}

.footer-link .link-arrow {
  color: var(--gold);
}

.legal {
  max-width: 275px;
  margin-top: 24px;
  color: rgba(var(--flesh-rgb), .6);
  font-size: 9px;
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 14px;
  border-top: 1px solid rgba(var(--flesh-rgb), .25);
  color: rgba(var(--flesh-rgb), .58);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.2;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity .55s ease, transform .55s ease;
}

@media (max-width: 980px) {
  .container {
    width: min(100% - 56px, 1180px);
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(310px, .78fr);
    gap: 44px;
  }

  .hero h1 {
    font-size: clamp(45px, 7.7vw, 73px);
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-frame {
    min-height: 460px;
  }

  .section-grid {
    grid-template-columns: 135px minmax(0, 1fr);
  }

  .about-note {
    grid-column: 2;
    width: min(250px, 100%);
    min-height: 160px;
  }

  .section-head {
    grid-template-columns: 135px minmax(0, 1fr);
  }

  .articles-head {
    grid-template-columns: 135px minmax(0, 1fr) auto;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card--feature {
    grid-row: auto;
    min-height: 310px;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

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

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

@media (max-width: 700px) {
  .container {
    width: min(100% - 40px, 1180px);
  }

  .nav-wrap {
    min-height: 70px;
  }

  .logo {
    gap: 9px;
  }

  .logo-mark {
    width: 35px;
    height: 35px;
    flex-basis: 35px;
    font-size: 9px;
  }

  .logo-copy strong {
    font-size: 13px;
  }

  .logo-copy small {
    margin-top: 4px;
    font-size: 7px;
  }

  .nav-wrap nav {
    display: none;
  }

  .mobile-cta {
    display: inline-flex;
  }

  .hero {
    padding: 56px 0 40px;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 48px;
  }

  .hero-content {
    order: 2;
  }

  .hero-visual {
    order: 1;
    min-height: 405px;
    padding-top: 12px;
  }

  .hero-visual::before {
    width: 78%;
    height: 86%;
  }

  .hero-visual::after {
    right: 3%;
    bottom: 1%;
    width: 82px;
    height: 82px;
  }

  .hero-frame {
    width: calc(100% - 27px);
    min-height: 380px;
  }

  .hero-stamp {
    right: 13px;
    bottom: 13px;
    width: min(205px, 65%);
    padding: 13px;
  }

  .hero-meta {
    margin-top: 32px;
    font-size: 8px;
  }

  .statement-inner {
    min-height: 150px;
    grid-template-columns: 1fr;
    gap: 13px;
    padding: 25px 0;
  }

  .statement-copy {
    font-size: 30px;
  }

  .section {
    padding: 84px 0;
  }

  .section-grid,
  .section-head,
  .articles-head,
  .contact-grid {
    display: block;
  }

  .section-label {
    margin-bottom: 35px;
  }

  .about-copy h2,
  .heading-block h2,
  .contact-intro h2 {
    margin-top: 18px;
    font-size: clamp(43px, 13vw, 62px);
  }

  .about-copy p {
    font-size: 15px;
  }

  .about-note {
    width: 100%;
    min-height: 150px;
    margin-top: 42px;
  }

  .section-head {
    margin-bottom: 42px;
  }

  .section-intro {
    font-size: 15px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card--feature {
    min-height: 285px;
  }

  .service-content strong {
    font-size: 31px;
  }

  .articles-head .desktop-link {
    margin-top: 27px;
  }

  .carousel {
    margin-inline: -20px;
    padding: 13px 20px 22px;
  }

  .ig-card {
    width: 245px;
  }

  .contact-grid {
    margin-top: 0;
  }

  .contact-panel {
    margin-top: 40px;
  }

  .contact-email {
    align-items: flex-end;
    font-size: 20px;
  }

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

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

  .footer-bottom {
    margin-top: 34px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
