@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap");
:root {
  --ink: #11110f;
  --paper: #fbfaf7;
  --cream: #eeeae1;
  --gold: #c7a15a;
  --gold2: #dfc386;
  --muted: #77736b;
  --line: rgba(17, 17, 15, 0.13);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --max: 1320px;
}
.contact-page {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
}
.contact-page * {
  box-sizing: border-box;
}
.contact-page a {
  text-decoration: none;
  color: inherit;
}
.contact-page img {
  display: block;
  max-width: 100%;
}
.contact-container {
  width: min(calc(100% - 64px), var(--max));
  margin: auto;
}
.contact-section-pad {
  padding: 140px 0;
}
.contact-kicker {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.contact-kicker:before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}
.light-kicker {
  color: var(--gold2);
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
}
h1 em,
h2 em {
  color: var(--gold);
  font-style: italic;
}
.contact-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
  color: #fff;
  transition: 0.35s;
}
.contact-header.is-scrolled {
  background: rgba(251, 250, 247, 0.96);
  color: var(--ink);
  box-shadow: 0 8px 35px #00000012;
  backdrop-filter: blur(15px);
}
.contact-header-inner {
  width: min(calc(100% - 64px), var(--max));
  min-height: 92px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 35px;
}
.contact-brand {
  display: inline-flex;
  align-items: center;
}
.contact-brand-image {
  width: 185px;
  max-height: 58px;
  object-fit: contain;
}
.contact-nav {
  display: flex;
  gap: 38px;
  margin-left: auto;
}
.contact-nav a {
  position: relative;
  padding: 12px 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  opacity: 0.82;
}
.contact-nav a.active,
.contact-nav a:hover {
  opacity: 1;
}
.contact-nav a.active:after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
}
.contact-header-cta {
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 45px;
  padding: 0 20px;
  border: 1px solid #ffffff73;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.contact-header.is-scrolled .contact-header-cta {
  border-color: var(--line);
}
.contact-header-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.contact-menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: inherit;
}
.contact-menu-toggle span {
  display: block;
  width: 25px;
  height: 1px;
  margin: 6px;
  background: currentColor;
}
.contact-hero {
  position: relative;
  height: 82vh;
  min-height: 750px;
  max-height: 900px;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}
.contact-hero-media,
.contact-hero-media img,
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.contact-hero-media img {
  object-fit: cover;
  animation: heroZoom 14s ease-out;
}
.contact-hero-overlay {
  background:
    linear-gradient(90deg, #070706d9, #07070670 58%, #07070620),
    linear-gradient(0deg, #070706aa, transparent 55%);
}
@keyframes heroZoom {
  from {
    transform: scale(1.07);
  }
  to {
    transform: scale(1);
  }
}
.contact-hero-content {
  position: absolute;
  top: 50%;
  width: min(760px, 100%);
  transform: translateY(-40%);
}
.contact-eyebrow {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-bottom: 25px;
  color: var(--gold2);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.contact-eyebrow span {
  width: 32px;
  height: 1px;
  background: currentColor;
}
.contact-hero h1 {
  margin: 0 0 27px;
  font-size: clamp(65px, 8vw, 122px);
  line-height: 0.82;
  letter-spacing: -0.045em;
}
.contact-hero h1 em {
  display: block;
  color: var(--gold2);
}
.contact-hero-content p {
  max-width: 540px;
  color: #ffffffb8;
  font-size: 15px;
  line-height: 1.85;
}
.contact-hero-bottom {
  position: absolute;
  right: max(32px, calc((100% - var(--max)) / 2));
  bottom: 32px;
  left: max(32px, calc((100% - var(--max)) / 2));
  display: flex;
  justify-content: space-between;
  color: #ffffff8c;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.contact-intro-grid,
.services-heading {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 110px;
  align-items: end;
}
.contact-intro h2,
.services-heading h2 {
  margin: 0;
  font-size: clamp(55px, 6.5vw, 92px);
  line-height: 0.88;
  letter-spacing: -0.04em;
}
.contact-intro-copy {
  max-width: 490px;
}
.contact-intro-copy p,
.services-heading > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}
.contact-intro-copy .contact-lead {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.7;
}
.contact-workspace {
  padding: 120px 0 145px;
  background: var(--cream);
}
.contact-workspace-grid {
  display: grid;
  grid-template-columns: 1.28fr 0.72fr;
  gap: clamp(65px, 9vw, 135px);
  align-items: start;
}
.contact-form-heading,
.contact-details-heading {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.contact-form-heading > span,
.contact-details-heading > span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.contact-form-heading h2 {
  margin: 0;
  font-size: 58px;
  line-height: 0.9;
}
.contact-field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 25px;
}
.contact-field label {
  display: block;
  margin-bottom: 9px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.contact-field label i {
  color: var(--gold);
  font-style: normal;
}
.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #11110f40;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: 14px var(--sans);
}
.contact-field input,
.contact-field select {
  height: 52px;
}
.contact-field textarea {
  min-height: 165px;
  padding: 14px 0;
  resize: vertical;
  line-height: 1.75;
}
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 1px var(--gold);
}
.message-field {
  position: relative;
  margin-top: 38px;
}
.message-field small {
  position: absolute;
  right: 0;
  bottom: 7px;
  color: #999286;
  font-size: 8px;
}
.contact-form-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-top: 36px;
  padding-top: 27px;
  border-top: 1px solid var(--line);
}
.contact-form-bottom p {
  max-width: 420px;
  color: #8a857c;
  font-size: 10px;
  line-height: 1.7;
}
.contact-submit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
  min-width: 205px;
  min-height: 57px;
  padding: 0 20px 0 24px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font: 700 9px var(--sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}
.contact-submit:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.contact-submit span {
  font-size: 18px;
}
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.contact-alert {
  display: flex;
  gap: 14px;
  padding: 16px 18px;
  margin-bottom: 30px;
  border: 1px solid;
}
.contact-alert > b {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #fff;
}
.contact-alert strong {
  font-size: 11px;
}
.contact-alert p {
  margin: 4px 0 0;
  font-size: 11px;
}
.contact-alert.success {
  background: #edf7ef;
  border-color: #285d3930;
  color: #285d39;
}
.contact-alert.success > b {
  background: #285d39;
}
.contact-alert.error {
  background: #fcf0ee;
  border-color: #873a3430;
  color: #873a34;
}
.contact-alert.error > b {
  background: #873a34;
}
.contact-details {
  position: sticky;
  top: 120px;
}
.contact-details-heading h2 {
  margin: 0;
  font-size: 54px;
  line-height: 0.86;
}
.detail-list {
  border-top: 1px solid var(--line);
}
.detail {
  display: grid;
  grid-template-columns: 35px 1fr 20px;
  align-items: center;
  gap: 13px;
  min-height: 105px;
  border-bottom: 1px solid var(--line);
}
.detail > b {
  color: var(--gold);
  font-size: 18px;
}
.detail small {
  display: block;
  margin-bottom: 5px;
  color: #8b867d;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.detail strong {
  font: 500 21px var(--serif);
  word-break: break-word;
}
.detail > span {
  color: var(--gold);
}
.private-card {
  display: flex;
  gap: 18px;
  margin-top: 35px;
  padding: 24px;
  background: var(--ink);
  color: #fff;
}
.private-card > strong {
  display: flex;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid #dfc38666;
  border-radius: 50%;
  color: var(--gold2);
  font: 25px var(--serif);
}
.private-card small {
  color: var(--gold2);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.private-card p {
  margin: 7px 0 0;
  color: #ffffff94;
  font-size: 11px;
  line-height: 1.7;
}
.services {
  background: var(--paper);
}
.services-heading {
  margin-bottom: 75px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service {
  min-height: 350px;
  padding: 35px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.service:last-child {
  border: 0;
}
.service > span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
}
.service h3 {
  margin: 70px 0 15px;
  font-size: 35px;
}
.service p {
  max-width: 330px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}
.service a {
  margin-top: auto;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.service a:hover {
  color: var(--gold);
}
.contact-closing {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}
.closing-media,
.closing-media img,
.closing-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.closing-media img {
  object-fit: cover;
}
.closing-overlay {
  background:
    linear-gradient(90deg, #070706e0, #07070670),
    linear-gradient(0deg, #07070699, transparent);
}
.closing-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 90px 0;
}
.closing-content h2 {
  margin: 0 0 35px;
  font-size: clamp(58px, 7vw, 104px);
  line-height: 0.84;
  letter-spacing: -0.045em;
}
.closing-content h2 em {
  display: block;
  color: var(--gold2);
}
.closing-content > a {
  display: inline-flex;
  gap: 30px;
  align-items: center;
  min-height: 55px;
  padding: 0 25px;
  background: #fff;
  color: var(--ink);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.closing-content > a:hover {
  background: var(--gold);
  color: #fff;
}
.contact-footer {
  padding: 80px 0 30px;
  background: #0c0c0b;
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 70px;
  padding-bottom: 65px;
}
.footer-grid > div:first-child {
  max-width: 370px;
}
.footer-grid .contact-brand-image {
  width: 190px;
}
.footer-grid p {
  color: #ffffff75;
  font-size: 11px;
  line-height: 1.8;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-col > span {
  margin-bottom: 8px;
  color: var(--gold2);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.footer-col a {
  color: #ffffff9e;
  font-size: 11px;
}
.footer-col a:hover {
  color: #fff;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding-top: 25px;
  border-top: 1px solid #ffffff24;
  color: #ffffff57;
  font-size: 9px;
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
@media (max-width: 1100px) {
  .contact-container,
  .contact-header-inner {
    width: min(calc(100% - 48px), var(--max));
  }
  .contact-nav {
    gap: 22px;
  }
  .contact-header-cta {
    display: none;
  }
  .contact-workspace-grid {
    gap: 60px;
  }
}
@media (max-width: 820px) {
  .contact-section-pad {
    padding: 95px 0;
  }
  .contact-container,
  .contact-header-inner {
    width: calc(100% - 40px);
  }
  .contact-header-inner {
    min-height: 78px;
  }
  .contact-brand-image {
    width: 155px;
  }
  .contact-menu-toggle {
    display: block;
  }
  .contact-nav {
    position: fixed;
    z-index: -1;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 100px 30px;
    background: var(--ink);
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.3s;
  }
  .contact-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .contact-nav a {
    width: 100%;
    font: 35px var(--serif);
    letter-spacing: 0;
    text-transform: none;
    padding: 14px 0;
  }
  .contact-nav a.active {
    color: var(--gold2);
  }
  .contact-nav a.active:after {
    display: none;
  }
  .contact-nav-open {
    overflow: hidden;
  }
  .contact-hero {
    height: 88vh;
    min-height: 690px;
  }
  .contact-hero-content {
    width: 100%;
    top: 52%;
  }
  .contact-hero h1 {
    font-size: clamp(61px, 15vw, 88px);
  }
  .contact-hero-content p {
    font-size: 13px;
  }
  .contact-hero-bottom {
    left: 20px;
    right: 20px;
  }
  .contact-hero-bottom span:last-child {
    display: none;
  }
  .contact-intro-grid,
  .contact-workspace-grid,
  .services-heading {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .contact-intro h2,
  .services-heading h2 {
    font-size: clamp(52px, 14vw, 75px);
  }
  .contact-workspace {
    padding: 85px 0 95px;
  }
  .contact-details {
    position: static;
  }
  .contact-field-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-heading h2 {
    font-size: 50px;
  }
  .service {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    min-height: 290px;
  }
  .service:last-child {
    border-bottom: 0;
  }
  .service h3 {
    margin-top: 50px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-bottom: 50px;
  }
}
@media (max-width: 520px) {
  .contact-container,
  .contact-header-inner {
    width: calc(100% - 30px);
  }
  .contact-section-pad {
    padding: 78px 0;
  }
  .contact-brand-image {
    width: 140px;
  }
  .contact-hero {
    min-height: 650px;
  }
  .contact-hero h1 {
    font-size: 58px;
  }
  .contact-hero-content p {
    font-size: 12px;
  }
  .contact-intro h2,
  .services-heading h2 {
    font-size: 50px;
  }
  .contact-form-heading,
  .contact-details-heading {
    grid-template-columns: 38px 1fr;
    gap: 15px;
  }
  .contact-form-heading h2 {
    font-size: 45px;
  }
  .contact-field-grid {
    gap: 28px;
  }
  .contact-form-bottom {
    align-items: stretch;
    flex-direction: column;
  }
  .contact-submit {
    width: 100%;
  }
  .contact-details-heading h2 {
    font-size: 48px;
  }
  .detail strong {
    font-size: 18px;
  }
  .contact-closing {
    min-height: 550px;
  }
  .closing-content h2 {
    font-size: 56px;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .contact-page * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
