:root {
  --black: #0b0b0b;
  --ink: #171717;
  --cream: #f8f3e9;
  --white: #fff;
  --gold: #c89a39;
  --gold2: #e7cb82;
  --muted: #6d675e;
  --line: rgba(200, 154, 57, .28);
  --shadow: 0 24px 70px rgba(0, 0, 0, .14);
  --radius: 26px
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55
}

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

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

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

.wrap {
  width: min(1180px, calc(100% - 36px));
  margin: auto
}

.announcement {
  background: linear-gradient(90deg, #a8791f, #ebd18b, #a8791f);
  color: #111;
  text-align: center;
  padding: 9px 16px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase
}

header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(248, 243, 233, .95);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0, 0, 0, .07)
}

.nav {
  height: 82px;
  display: flex;
  align-items: center;
  gap: 26px
}

.brand {
  display: flex;
  align-items: center;
  margin-right: auto
}

.brand img {
  width: 150px;
  height: 60px;
  object-fit: contain;
  mix-blend-mode: multiply
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 14px;
  font-weight: 850
}

.navlinks a {
  position: relative
}

.navlinks a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--gold);
  transition: .2s
}

.navlinks a:hover:after,
.navlinks a.active:after {
  right: 0
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: .22s;
  cursor: pointer
}

.nav-cta,
.btn.gold {
  background: var(--gold);
  color: #0b0b0b;
  box-shadow: 0 10px 24px rgba(200, 154, 57, .2)
}

.nav-cta:hover,
.btn.gold:hover {
  transform: translateY(-2px);
  background: var(--gold2)
}

.btn.dark {
  background: #111;
  color: #fff;
  border-color: #111
}

.btn.outline {
  border-color: #b98628;
  background: transparent;
  color: #161616
}

.btn.light {
  background: #fff;
  color: #111
}

.menu {
  display: none;
  background: none;
  border: 0;
  font-size: 28px
}

.hero {
  background: #0c0c0c;
  color: #fff;
  overflow: hidden;
  position: relative
}

.hero:before {
  content: "";
  position: absolute;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 154, 57, .23), transparent 67%);
  left: -260px;
  top: -250px
}

.hero-grid {
  min-height: 630px;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 40px;
  align-items: center;
  padding: 58px 0
}

.eyebrow,
.kicker {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 900;
  color: #9c7225
}

.hero .eyebrow {
  color: var(--gold2);
  display: flex;
  align-items: center;
  gap: 9px
}

.hero .eyebrow:before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor
}

h1,
h2,
h3 {
  margin: 0;
  line-height: .98
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 500;
  letter-spacing: -.045em;
  margin: 18px 0 20px
}

h1 em {
  font-style: italic;
  color: var(--gold2)
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 500;
  letter-spacing: -.035em
}

h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500
}

.hero p {
  font-size: 18px;
  color: #d7d7d7;
  max-width: 660px;
  margin: 0 0 28px
}

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

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 26px;
  margin-top: 26px;
  color: #c9c9c9;
  font-size: 13px;
  font-weight: 750
}

.hero-meta span:before {
  content: "•";
  color: var(--gold);
  margin-right: 8px
}

.hero-media {
  height: 535px;
  position: relative
}

.hero-main {
  position: absolute;
  right: 0;
  top: 0;
  width: 78%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 180px 180px 24px 24px;
  box-shadow: var(--shadow)
}

.hero-mini {
  position: absolute;
  left: 0;
  bottom: 25px;
  width: 43%;
  height: 225px;
  object-fit: cover;
  border: 8px solid #0c0c0c;
  border-radius: 20px;
  box-shadow: var(--shadow)
}

.hero-badge {
  position: absolute;
  left: 5%;
  top: 18px;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  background: var(--gold);
  color: #111;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: Georgia, serif;
  font-weight: 700;
  transform: rotate(-7deg);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .28)
}

section {
  padding: 82px 0
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 34px
}

.section-head p {
  max-width: 530px;
  color: var(--muted);
  margin: 0
}

.white {
  background: #fff
}

.dark {
  background: #101010;
  color: #fff
}

.dark .section-head p {
  color: #bdbdbd
}

.quickbar {
  background: #fff;
  border-bottom: 1px solid #eee
}

.quickgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr)
}

.quickitem {
  padding: 24px 26px;
  border-right: 1px solid #ece6da
}

.quickitem:last-child {
  border-right: 0
}

.quickitem small {
  display: block;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: #9a7227;
  font-weight: 900;
  font-size: 10px;
  margin-bottom: 5px
}

.quickitem strong {
  font-size: 16px
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 325px;
  padding: 27px;
  background: #151515;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end
}

.service-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .03), rgba(0, 0, 0, .89));
  z-index: 1
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s
}

.service-card:hover img {
  transform: scale(1.035)
}

.service-card .copy {
  position: relative;
  z-index: 2
}

.service-card .num {
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--gold2);
  font-weight: 900
}

.service-card h3 {
  margin: 7px 0
}

.service-card p {
  margin: 0;
  color: #ddd;
  font-size: 14px
}

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 56px;
  align-items: center
}

.portrait {
  position: relative
}

.portrait img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 210px 210px 28px 28px;
  box-shadow: var(--shadow)
}

.floating-label {
  position: absolute;
  bottom: 25px;
  left: -18px;
  background: #111;
  color: #fff;
  padding: 17px 21px;
  border-radius: 14px;
  border-left: 5px solid var(--gold)
}

.floating-label small {
  display: block;
  color: var(--gold2);
  font-size: 10px;
  letter-spacing: .15em;
  font-weight: 900
}

.floating-label strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 23px
}

.copy p {
  font-size: 17px;
  color: #625d55
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 23px 0 28px
}

.chip {
  border: 1px solid var(--line);
  background: #fff;
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800
}

.gallery {
  columns: 4 240px;
  column-gap: 14px
}

.gallery figure {
  margin: 0 0 14px;
  break-inside: avoid;
  overflow: hidden;
  border-radius: 18px;
  background: #eee
}

.gallery img {
  width: 100%;
  height: auto;
  transition: .35s
}

.gallery figure:hover img {
  transform: scale(1.02)
}

.promo {
  background: linear-gradient(135deg, #121212, #252015);
  color: #fff;
  border-radius: 30px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
  align-items: center;
  overflow: hidden
}

.promo p {
  color: #d7d7d7
}

.promo img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 22px
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px
}

.price-card {
  background: #fff;
  border: 1px solid #e7dfd1;
  border-radius: 24px;
  padding: 28px
}

.price-card h3 {
  margin-bottom: 17px
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid #eee8dc
}

.price-row:last-child {
  border-bottom: 0
}

.price-row span:last-child {
  font-weight: 900;
  color: #9a7227;
  text-align: right
}

.note {
  font-size: 13px;
  color: #756e64;
  margin-top: 13px
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.person {
  background: #181818;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 26px;
  overflow: hidden
}

.person img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: top center
}

.person-body {
  padding: 25px
}

.person-role {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--gold2);
  font-weight: 900
}

.person h3 {
  font-size: 31px;
  margin: 7px 0 11px
}

.person p {
  color: #c8c8c8;
  margin: 0 0 19px;
  font-size: 14px;
  min-height: 105px
}

.person .btn {
  width: 100%
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.value {
  background: #fff;
  border-radius: 22px;
  padding: 27px;
  border: 1px solid #e7dfd1
}

.value b {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  margin-bottom: 16px
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 44px;
  align-items: start
}

.contact-card {
  background: #fff;
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow)
}

.contact-list {
  display: grid;
  gap: 13px;
  margin: 24px 0
}

.contact-item {
  padding: 14px 0;
  border-bottom: 1px solid #ece5da
}

.contact-item small {
  display: block;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #9a7227;
  font-weight: 900;
  margin-bottom: 4px
}

.contact-item a,
.contact-item strong {
  font-size: 19px;
  font-weight: 850
}

.map {
  border: 0;
  width: 100%;
  height: 430px;
  border-radius: 24px
}

.form {
  background: #111;
  color: #fff;
  border-radius: 28px;
  padding: 28px
}

.form h3 {
  font-size: 34px
}

.form p {
  color: #c8c8c8
}

.fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.field {
  display: grid;
  gap: 6px
}

.field.full {
  grid-column: 1/-1
}

label {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d8d0c3;
  border-radius: 13px;
  padding: 13px 14px;
  background: #fbfaf7;
  outline: none;
  color: #111
}

textarea {
  min-height: 105px;
  resize: vertical
}

.form .btn {
  width: 100%;
  margin-top: 13px
}

.fine {
  font-size: 11px !important;
  color: #aaa !important
}

.areas {
  padding: 28px 0;
  background: #050505;
  color: #aaa;
  border-top: 1px solid rgba(255, 255, 255, .08)
}

.areas-inner {
  text-align: center;
  font-size: 13px
}

.areas strong {
  color: #fff
}

footer {
  background: #050505;
  color: #a8a8a8;
  padding: 28px 0 34px
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .09);
  padding-top: 25px
}

.footer img {
  width: 105px;
  background: #f8f3e9;
  border-radius: 10px;
  padding: 6px
}

.footer-links {
  display: flex;
  gap: 17px;
  font-size: 13px;
  font-weight: 700
}

.pagehero {
  background: #0d0d0d;
  color: #fff;
  padding: 74px 0 68px;
  position: relative;
  overflow: hidden
}

.pagehero:after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  right: -100px;
  top: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 154, 57, .22), transparent 68%)
}

.pagehero h1 {
  font-size: clamp(45px, 5.5vw, 76px);
  max-width: 900px
}

.pagehero p {
  max-width: 700px;
  color: #ccc;
  font-size: 17px
}

.ribbon {
  padding: 17px 0;
  background: var(--gold);
  color: #111;
  font-weight: 900;
  text-align: center
}

.logo-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 10px
}

.logo-pill {
  background: #fff;
  border: 1px solid #e7dfd1;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px
}

@media(max-width:900px) {
  .navlinks {
    display: none;
    position: absolute;
    top: 82px;
    left: 18px;
    right: 18px;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch
  }

  .navlinks.open {
    display: flex
  }

  .nav-cta {
    display: none
  }

  .menu {
    display: block
  }

  .hero-grid,
  .split,
  .promo,
  .contact-grid {
    grid-template-columns: 1fr
  }

  .hero-grid {
    min-height: auto;
    padding: 42px 0 54px
  }

  .hero-media {
    height: 470px
  }

  .service-grid,
  .team-grid {
    grid-template-columns: 1fr 1fr
  }

  .quickgrid {
    grid-template-columns: 1fr 1fr
  }

  .quickitem:nth-child(2) {
    border-right: 0
  }

  .pricing-grid,
  .values {
    grid-template-columns: 1fr
  }

  .portrait img {
    height: 540px
  }
}

@media(max-width:620px) {
  .wrap {
    width: min(100% - 24px, 1180px)
  }

  .announcement {
    font-size: 9px
  }

  .nav {
    height: 72px
  }

  .brand img {
    width: 122px;
    height: 50px
  }

  .navlinks {
    top: 72px
  }

  section {
    padding: 62px 0
  }

  .hero-grid {
    padding-top: 34px
  }

  h1 {
    font-size: 46px
  }

  .hero p {
    font-size: 16px
  }

  .hero-media {
    height: 390px
  }

  .hero-main {
    width: 87%;
    border-radius: 115px 115px 20px 20px
  }

  .hero-mini {
    width: 46%;
    height: 155px;
    border-width: 6px
  }

  .hero-badge {
    width: 100px;
    height: 100px;
    font-size: 13px;
    left: 0
  }

  .section-head {
    display: block
  }

  .section-head p {
    margin-top: 14px
  }

  .service-grid,
  .team-grid,
  .quickgrid {
    grid-template-columns: 1fr
  }

  .quickitem {
    border-right: 0;
    border-bottom: 1px solid #ece6da
  }

  .service-card {
    min-height: 295px
  }

  .person img {
    height: 430px
  }

  .portrait img {
    height: 470px
  }

  .floating-label {
    left: 10px
  }

  .gallery {
    columns: 2 140px
  }

  .promo {
    padding: 24px
  }

  .promo img {
    height: 260px
  }

  .fields {
    grid-template-columns: 1fr
  }

  .field.full {
    grid-column: auto
  }

  .footer {
    flex-direction: column;
    text-align: center
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center
  }

  .pagehero {
    padding: 58px 0 50px
  }
}

.nav-call-group {
  display: flex;
  align-items: center;
  gap: 8px
}

.nav-call-group .nav-cta {
  white-space: nowrap;
  padding: 11px 14px;
  font-size: 12px
}

@media(max-width:1100px) {
  .nav-call-group {
    gap: 5px
  }

  .nav-call-group .nav-cta {
    padding: 10px 9px;
    font-size: 10px
  }
}

@media(max-width:900px) {
  .nav-call-group {
    display: none
  }
}

/* ABOUT PAGE POLISH */
body.about-page .person p,
.person p {
  line-height: 1.7
}

.person p a {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 22px
}

.filter-btn {
  border: 1px solid var(--line);
  background: #fff;
  color: #161616;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: .22s
}

.filter-btn:hover {
  border-color: var(--gold);
  transform: translateY(-1px)
}

.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #0b0b0b
}

.filter-gallery {
  columns: 4 240px;
  column-gap: 14px
}

.filter-item {
  margin: 0 0 14px;
  break-inside: avoid;
  overflow: hidden;
  border-radius: 18px;
  background: #eee
}

.filter-item img {
  width: 100%;
  height: auto;
  transition: .35s
}

.filter-item:hover img {
  transform: scale(1.02)
}

.filter-item[hidden] {
  display: none
}

@media(max-width:620px) {
  .filter-gallery {
    columns: 2 140px
  }
}

/* Decorative hero glows must not intercept taps */
.hero:before,
.pagehero:after {
  pointer-events: none
}

.hero-grid,
.pagehero .wrap {
  position: relative;
  z-index: 1
}

/* Call buttons in the mobile nav bar */
.cta-short {
  display: none
}

@media(max-width:900px) {
  .nav {
    flex-wrap: wrap;
    height: auto !important;
    padding: 10px 0;
    gap: 10px
  }

  .navlinks {
    top: 100%
  }

  .nav-call-group {
    display: flex;
    order: 3;
    width: 100%;
    gap: 8px
  }

  .nav-call-group .nav-cta {
    display: inline-flex;
    flex: 1;
    padding: 12px 8px;
    font-size: 12px;
    white-space: nowrap
  }
}

@media(max-width:620px) {
  .nav-call-group .cta-long {
    display: none
  }

  .nav-call-group .cta-short {
    display: inline
  }
}

/* Mobile: hero images sit under the tagline, above the buttons */
@media(max-width:900px) {
  .hero-grid {
    gap: 0
  }

  .hero-grid>div:first-child {
    display: contents
  }

  .hero .eyebrow {
    order: 1
  }

  .hero h1 {
    order: 2
  }

  .hero-grid p {
    order: 3;
    margin-bottom: 20px
  }

  .hero-media {
    order: 4;
    margin-bottom: 28px
  }

  .hero-actions {
    order: 5
  }

  .hero-meta {
    order: 6
  }
}