:root {
    --black: #090909;
    --ink: #121212;
    --white: #fff;
    --cream: #f3efe6;
    --gold: #d7ad48;
    --gold-light: #f1d88a;
    --line: rgba(255, 255, 255, 0.18);
    --max: 1200px;
}
* {
    box-sizing: border-box;
}
html,
body {
  max-width: 100%;
  overflow-x: clip;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background: var(--black);
    color: var(--white);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}
img {
    display: block;
    width: 100%;
}
a {
    color: inherit;
    text-decoration: none;
}
.wrap {
    width: min(calc(100% - 40px), var(--max));
    margin: auto;
}
.section {
    padding: 120px 0;
}
.skip-link {
    position: fixed;
    left: 1rem;
    top: -5rem;
    z-index: 1000;
    background: var(--gold);
    color: #000;
    padding: 0.75rem 1rem;
    font-weight: 700;
}
.skip-link:focus {
    top: 1rem;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}
.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 18px;
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
}
.eyebrow:before {
    content: "";
    width: 36px;
    height: 1px;
    background: currentColor;
}
.eyebrow.dark {
    color: #8a651c;
}
.hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(91, 90, 90, 0.40) 0%, rgba(115, 115, 115, 0.60) 45%, rgba(115, 115, 115, 0.2) 100%),
        url("assets/crowd.jpeg") center 47% / cover no-repeat;
      

}
.hero:after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 50%;
    background: linear-gradient(transparent, var(--black));
    pointer-events: none;
}
.nav {
    position: relative;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 120px;
    border-bottom: 1px solid var(--line);
}
.brand {
    width: 105px;
    margin-top: 18px;
}
.nav-links {
    display: flex;
    gap: 38px;
    align-items: center;
}
.nav-links a {
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    font-size: 1.3rem;
    letter-spacing: 0.13em;
    transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--gold-light);
}
.nav-toggle {
    display: none;
    background: none;
    border: 0;
    color: #fff;
    padding: 10px;
}
.nav-toggle span:not(.sr-only) {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px;
    background: currentColor;
}
.hero-content {
    position: relative;
    z-index: 2;
    padding-top: clamp(100px, 18vh, 190px);
    padding-bottom: 170px;

}
.hero h1,
.section h2 {
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    line-height: 0.94;
    letter-spacing: -0.03em;
    margin: 0;
}
.hero h1 {
    max-width: 930px;
    font-size: clamp(3.6rem, 8.4vw, 7.6rem);
}
.hero h1 em {
    color: var(--gold);
    font-style: normal;
}
.hero-copy {
    max-width: 520px;
    margin: 28px 0 34px;
    color: #ddd;
    font-size: 1.15rem;
}

img.hero-logo{
width: 550px;
max-width: 45vw;
height: auto;
    margin-left: auto;
    margin-right: auto;

}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-width: 210px;
    padding: 17px 22px;
    border: 1px solid var(--gold);
    font-weight: 700;
    font-size: 0.86rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        transform 0.2s,
        background 0.2s;
}
.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}
.button-gold {
    background: var(--gold);
    color: #090909;
}
.button-gold:hover,
.button-gold:focus-visible {
    background: var(--gold-light);
}
.scroll-cue {
    position: absolute;
    z-index: 4;
    right: 34px;
    bottom: 42px;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: rotate(90deg);
    transform-origin: right;
    color: #ddd;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.scroll-cue i {
    display: block;
    width: 48px;
    height: 1px;
    background: var(--gold);
}
.services {
    position: relative;
    background: var(--cream);
    color: var(--ink);
}
.services:before {
    content: "M+N";
    position: absolute;
    right: -1vw;
    top: -4vw;
    color: rgba(0, 0, 0, 0.035);
    font: 700 clamp(12rem, 30vw, 28rem) / 1 "Oswald";
    pointer-events: none;
}
.section-heading {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
    gap: 50px;
    margin-bottom: 64px;
}
.section h2 {
    font-size: clamp(3rem, 6vw, 5.8rem);
}
.section h2 span {
    color: var(--gold);
}
.section-heading > p:last-child {
    max-width: 470px;
    margin: 0 0 8px;
    color: #5d5a54;
    font-size: 1.05rem;
}
.service-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.service-card {
    position: relative;
    min-height: 540px;
    overflow: hidden;
    background: #111;
}
.service-card:nth-child(2) {
    transform: translateY(42px);
}
.service-card img {
    height: 100%;
    object-fit: cover;
    filter: saturate(0.75);
    transition:
        transform 0.65s ease,
        filter 0.4s;
}
.service-card:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 28%, rgba(0, 0, 0, 0.9));
}
.service-card:hover img {
    transform: scale(1.04);
    filter: saturate(1);
}
.service-overlay {
    position: absolute;
    z-index: 2;
    left: 28px;
    right: 28px;
    bottom: 27px;
    color: #fff;
}
.service-overlay > span {
    color: var(--gold);
    font: 500 0.8rem "Oswald";
    letter-spacing: 0.18em;
}
.service-overlay h3 {
    margin: 8px 0 10px;
    font: 600 2.15rem/1.05 "Oswald";
    text-transform: uppercase;
}
.service-overlay p {
    max-width: 280px;
    margin: 0;
    color: #d3d3d3;
    font-size: 0.92rem;
    line-height: 1.45;
}
.about {
    background: var(--black);
}
.about-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.85fr;
    gap: 9vw;
    align-items: center;
}
.photo-collage {
    position: relative;
    min-height: 640px;
}
.photo {
    position: absolute;
    margin: 0;
    overflow: hidden;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
}
.photo img {
    height: 100%;
    object-fit: cover;
}
.photo-main {
    left: 0;
    bottom: 0;
    width: 77%;
    height: 76%;
    border: 8px solid #181818;
}
.photo-top {
    right: 0;
    top: 0;
    width: 58%;
    height: 44%;
    border: 8px solid var(--cream);
}
.gold-stamp {
    position: absolute;
    right: 4%;
    bottom: 6%;
    z-index: 4;
    display: flex;
    place-content: center;
    justify-content: center;
    overflow: hidden;
    width: 142px;
    height: 142px;
    border-radius: 50%;
    background: transparent;
    color: #080808;
    text-align: center;
    transform: rotate(-8deg);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.45);
}
.gold-stamp img {
  width: 100%;
  height: 100%;
  padding: 10px;
  object-fit: contain;
}
.gold-stamp span {
    font: 700 2.5rem/1 "Oswald";
}
.gold-stamp small {
    font-size: 0.53rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}
.about-copy .lead {
    font-size: 1.22rem;
    line-height: 1.65;
    color: #eee;
}
.about-copy > p:not(.eyebrow):not(.lead) {
    color: #aaa;
}
.text-link {
    display: inline-flex;
    gap: 14px;
    margin-top: 20px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--gold);
    color: var(--gold-light);
    font-weight: 700;
}
.contact {
    position: relative;
    background: #121212;
    overflow: hidden;
}
.contact:after {
    content: "";
    position: absolute;
    left: -12%;
    bottom: -55%;
    width: 700px;
    height: 700px;
    border: 1px solid rgba(215, 173, 72, 0.16);
    border-radius: 50%;
    box-shadow:
        0 0 0 70px rgba(215, 173, 72, 0.025),
        0 0 0 140px rgba(215, 173, 72, 0.018);
}
.contact-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 9vw;
}
.contact-intro > p:not(.eyebrow) {
    max-width: 420px;
    color: #aaa;
}
.contact-detail {
    margin-top: 48px;
}
.contact-detail small {
    display: block;
    color: #777;
    font-size: 0.67rem;
    letter-spacing: 0.17em;
}
.contact-detail a {
    color: var(--gold-light);
    font-size: 1.08rem;
}
.inquiry-form {
    display: grid;
    gap: 24px;
    padding: 44px;
    background: #fff;
    color: #111;
}
.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}
.inquiry-form label,
.inquiry-form legend {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.inquiry-form input:not([type="checkbox"]),
.inquiry-form textarea {
    display: block;
    width: 100%;
    margin-top: 8px;
    border: 0;
    border-bottom: 1px solid #b7b2a8;
    border-radius: 0;
    background: var(--gold);
    padding: 11px 2px;
    font: 1rem "DM Sans";
    outline: 0;
}
.inquiry-form input:focus,
.inquiry-form textarea:focus {
    border-color: #9b721c;
}
.inquiry-form fieldset {
    border: 0;
    padding: 0;
    margin: 0;
}
.choices {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 10px;
}
.choices label {
    position: relative;
}
.choices input {
    position: absolute;
    opacity: 0;
}
.choices span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 55px;
    padding: 8px;
    border: 1px solid #c9c4ba;
    text-align: center;
    font-size: 0.67rem;
    transition: 0.2s;
}

.choices span {
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.choices label:hover span {
  background-color: #000;
  color: #fff;
  border-color: #000;
  cursor: pointer;
}

.choices input:checked + span {
  background-color: #000;
  color: #fff;
  border-color: #000;
}


.choices input:checked + span {
    border-color: #111;
    background: #111;
    color: #fff;
}
.choices input:focus-visible + span {
    outline: 3px solid var(--gold);
}
.inquiry-form .button {
    border: 0;
    margin-top: 5px;
}
.form-note {
    margin: -10px 0 0;
    color: #777;
    font-size: 0.72rem;
}
.honeypot {
    position: absolute !important;
    left: -9999px !important;
}
footer {
    background: #f3efe6;
    border-top: 1px solid #222;
}
.footer-inner {
    min-height: 150px;
     display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
    color: black;
    font-size: 0.78rem;
}
.footer-inner img {
    width: 85px;
}
.footer-inner a {
    color: black;
}

.footer-credit {
  margin: 0;
  text-align: center;
  color: #090909;
}

.footer-credit a {
  color: var(--gold-light);
}

.back-to-top {
  justify-self: end;

}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}

.footer-credit a,
.back-to-top {
  color: #090909;
}

.footer-credit a:hover,
.back-to-top:hover {
  color: #8a651c;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.back-to-top {
  justify-self: end;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .service-card img {
        transition: none;
    }
}
@media (max-width: 850px) {
    .section {
        padding: 88px 0;
    }
    .nav {
        height: 100px;
    }
    .brand {
        width: 82px;
    }
    .nav-toggle {
        display: block;
        position: relative;
        z-index: 2;
    }
    .nav-links {
        position: absolute;
        display: none;
        flex-direction: column;
        align-items: flex-end;
        top: 80px;
        right: 0;
        padding: 26px;
        background: #0b0b0b;
        border: 1px solid #2d2d2d;
    }
    .nav-links.open {
        display: flex;
    }
    .hero {
        min-height: 820px;
        background-position: 62% center;
    }
    .hero-content {
        padding-top: 135px;
    }
    .hero h1 {
        font-size: clamp(3.5rem, 15vw, 6rem);
    }
    .scroll-cue {
        display: none;
    }
    .section-heading,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .section-heading {
        gap: 24px;
    }
    .service-grid {
        grid-template-columns: 1fr 1fr;
    }
    .service-card {
        min-height: 480px;
    }
    .service-card:nth-child(2) {
        transform: translateY(25px);
    }
    .service-card:nth-child(3) {
        grid-column: 1/-1;
        margin-top: 25px;
        min-height: 430px;
    }
    .about-grid {
        gap: 70px;
    }
    .about-copy {
        max-width: 650px;
    }
    .contact-grid {
        gap: 55px;
    }

    .footer-credit a,
.back-to-top {
  color: #d7ad48;
}

}
@media (max-width: 560px) {
    .wrap {
        width: min(calc(100% - 28px), var(--max));
    }
    .section {
        padding: 74px 0;
    }
    .hero {
        min-height: 760px;
        background-position: 66% center;
    }
    .hero:before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.14);
    }
    .hero-content {
        padding-top: 130px;
    }
    .hero h1 {
        font-size: 3.6rem;
    }
    .hero-copy {
        font-size: 1rem;
    }

    .section h2 {
        font-size: 3.2rem;
    }
    .service-grid {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }
    .service-card,
    .service-card:nth-child(2),
    .service-card:nth-child(3) {
        min-height: 420px;
        transform: none;
        margin: 0;
    }
    .service-card:nth-child(3) {
        grid-column: auto;
    }
    .photo-collage {
        min-height: 500px;
    }
    .photo-main {
        width: 90%;
        height: 70%;
    }
    .photo-top {
        width: 62%;
        height: 38%;
    }
    .gold-stamp {
        width: 110px;
        height: 110px;
        right: 0;
        bottom: 4%;
    }
    .gold-stamp span {
        font-size: 2rem;
    }
    .contact-grid {
        gap: 42px;
        grid-template-columns: minmax(0, 1fr);
    }
    .contact-intro,
  .inquiry-form {
    min-width: 0;
  }
    .inquiry-form {
        padding: 28px 20px;
        width: 100%;
    }
    .contact-intro h2 {
    font-size: clamp(2.3rem, 10vw, 3.2rem);
    overflow-wrap: anywhere;
  }
    .field-row {
        grid-template-columns: 1fr;
    }
    .choices {
        grid-template-columns: 1fr;
    }
    .choices span {
        min-height: 48px;
    }
    .footer-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    text-align: center;
    }
    .footer-inner p {
        margin: 0;
    }
.footer-inner img {
margin-top: 10px;
}
      .back-to-top {
    align-self: center;
  }
}
