:root {
  --black: #060606;
  --charcoal: #111111;
  --graphite: #232323;
  --gold: #b6965d;
  --gold-soft: #e0c993;
  --paper: #f7f4ed;
  --white: #ffffff;
  --muted: #7b7770;
  --line: rgba(182, 150, 93, 0.28);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--charcoal);
  background: var(--paper);
  overflow-x: hidden;
}

body.loading {
  overflow: hidden;
}

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

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

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

.container {
  width: calc(100% - 44px);
  max-width: 1240px;
  margin: 0 auto;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 42%, rgba(182, 150, 93, 0.18), transparent 26rem),
    linear-gradient(135deg, #000, #151515 55%, #070707);
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader__rings {
  position: absolute;
  width: min(620px, 80vw);
  aspect-ratio: 1;
  border: 1px solid rgba(182, 150, 93, 0.26);
  border-radius: 50%;
  animation: spin 8s linear infinite;
}

.loader__rings span {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.loader__rings span:nth-child(2) {
  inset: 22%;
}

.loader__rings span:nth-child(3) {
  inset: 34%;
}

.loader__logo {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100vw - 42px));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  animation: logoReveal 2.8s ease both;
}

.loader__status,
.loader__phrases {
  position: absolute;
  z-index: 3;
  text-align: center;
  text-transform: uppercase;
}

.loader__status {
  bottom: 25%;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.loader__phrases {
  bottom: 18%;
  width: min(780px, 92vw);
  min-height: 30px;
  overflow: hidden;
  color: var(--white);
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(1rem, 2vw, 1.45rem);
}

.loader__phrases span {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: phraseCycle 3s linear forwards;
}

.loader__phrases span:nth-child(2) { animation-delay: 0.5s; }
.loader__phrases span:nth-child(3) { animation-delay: 1s; }
.loader__phrases span:nth-child(4) { animation-delay: 1.5s; }
.loader__phrases span:nth-child(5) { animation-delay: 2s; }
.loader__phrases span:nth-child(6) { animation-delay: 2.5s; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 5, 5, 0.86);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.navbar {
  width: calc(100% - 32px);
  max-width: 1320px;
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand img,
.footer img {
  width: 230px;
  height: 74px;
  object-fit: contain;
  padding: 3px 9px;
  background: var(--white);
  border-radius: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--gold-soft);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-cta,
.button--primary {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}

.button--ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: calc(100vh - 88px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0 40%, rgba(0, 0, 0, 0.38) 68%, rgba(0, 0, 0, 0.8)),
    url("assets/commercial-auction-collage.svg") right center / min(940px, 65vw) auto no-repeat,
    linear-gradient(135deg, #080808, #222);
  opacity: 1;
}

.hero__shade {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(0deg, #000, transparent);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 46px;
  align-items: end;
  padding: 110px 0 84px;
}

.hero__content {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Cinzel, Georgia, serif;
}

h1 {
  max-width: 820px;
  font-size: clamp(3rem, 6vw, 6.6rem);
  font-weight: 800;
  text-transform: uppercase;
}

.hero__copy {
  max-width: 710px;
  margin: 26px 0 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.8;
}

.hero__actions,
.property-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__auction-card {
  padding: 26px;
  border: 1px solid rgba(182, 150, 93, 0.34);
  background: rgba(0, 0, 0, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero__auction-card p,
.listing-type {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__auction-card h2 {
  font-size: 1.45rem;
  color: var(--white);
}

.hero__auction-card dl {
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.hero__auction-card div {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero__auction-card dt {
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero__auction-card dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.ticker {
  overflow: hidden;
  border-block: 1px solid rgba(182, 150, 93, 0.28);
  background: var(--charcoal);
  color: var(--white);
}

.ticker div {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 5vw, 70px);
  padding: 18px 20px;
  white-space: nowrap;
}

.ticker span {
  color: var(--gold-soft);
  font-family: Cinzel, Georgia, serif;
  font-weight: 700;
  text-transform: uppercase;
}

.section {
  padding: 100px 0;
}

.section-heading {
  max-width: 870px;
  margin-bottom: 40px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  text-transform: uppercase;
}

.section-heading p:not(.eyebrow),
.service-card p,
.division-card p,
.legacy__copy p,
.property-feature__content p,
.process-steps p,
.footer p {
  color: var(--muted);
  line-height: 1.75;
}

.auction-grid {
  display: grid;
  gap: 18px;
}

.auction-listing {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--white);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
}

.date-block {
  display: grid;
  place-items: center;
  min-height: 112px;
  border: 1px solid var(--line);
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.date-block strong {
  font-family: Cinzel, Georgia, serif;
  font-size: 1.55rem;
}

.date-block span {
  color: var(--gold-soft);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.auction-listing h3 {
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(1.35rem, 2.4vw, 2.25rem);
  text-transform: uppercase;
}

.auction-listing p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.65;
}

.auction-listing a {
  color: var(--black);
  border-bottom: 2px solid var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.property-feature {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 650px;
  background: var(--black);
  color: var(--white);
}

.property-feature__image {
  min-height: 520px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.62)),
    url("assets/garden-route-scenery.svg") center / cover no-repeat,
    linear-gradient(135deg, #4f524b, #1a1a1a);
}

.property-feature__content {
  align-self: center;
  padding: clamp(40px, 6vw, 86px);
}

.property-feature__content h2 {
  max-width: 740px;
  font-size: clamp(2.2rem, 4vw, 4.8rem);
  text-transform: uppercase;
}

.property-feature__content p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
}

.property-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0;
}

.property-facts div {
  padding: 18px;
  border: 1px solid rgba(182, 150, 93, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.property-facts span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.property-facts strong {
  font-family: Cinzel, Georgia, serif;
}

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

.division-card {
  --division-image: url("assets/commercialproperty.jpg?v=19");
  --division-position: center;
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 26px;
  color: var(--white);
  background: var(--black);
}

.division-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.86)),
    var(--division-image) var(--division-position) / cover no-repeat;
  opacity: 0.9;
  transition: transform 0.35s ease;
}

.division-card--property {
  --division-image: url("assets/commercialproperty.jpg?v=19");
  --division-position: center;
}

.division-card--luxury {
  --division-image: url("assets/luxuryand-estate.avif?v=19");
  --division-position: center;
}

.division-card--fleet {
  --division-image: url("assets/fleet.jpg?v=19");
  --division-position: center;
}

.division-card--machinery {
  --division-image: url("assets/machinery.jpg?v=19");
  --division-position: center;
}

.division-card:hover::before {
  transform: scale(1.04);
}

.division-card > * {
  position: relative;
  z-index: 1;
}

.division-card span {
  margin-bottom: 18px;
  color: var(--gold-soft);
  font-weight: 900;
}

.division-card h3 {
  font-family: Cinzel, Georgia, serif;
  font-size: 2rem;
  text-transform: uppercase;
}

.division-card p {
  color: rgba(255, 255, 255, 0.72);
}

.legacy {
  padding: 110px 0;
  color: var(--white);
  background: var(--charcoal);
}

.legacy__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.legacy__image {
  min-height: 560px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.72)),
    url("assets/grca-logo.jpeg?v=18") center / contain no-repeat,
    #fff;
  box-shadow: var(--shadow);
}

.legacy__copy h2 {
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  text-transform: uppercase;
}

.legacy__copy p {
  color: rgba(255, 255, 255, 0.72);
}

.legacy__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.legacy__stats div,
.service-card,
.process-steps article,
.contact-form {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--white);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
}

.legacy__stats div {
  padding: 20px;
  border-color: rgba(182, 150, 93, 0.34);
  background: rgba(255, 255, 255, 0.06);
}

.legacy__stats strong {
  display: block;
  color: var(--gold-soft);
  font-size: 2.4rem;
}

.legacy__stats span {
  color: rgba(255, 255, 255, 0.68);
}

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

.service-card {
  padding: 28px;
  min-height: 230px;
}

.service-card h3,
.process-steps h3 {
  font-family: Cinzel, Georgia, serif;
  text-transform: uppercase;
}

.process {
  padding: 100px 0;
  background: #eee8dd;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.process-steps article {
  padding: 24px;
}

.process-steps span {
  color: var(--gold);
  font-weight: 900;
}

.process-steps h3 {
  margin: 18px 0 12px;
}

.newsletter {
  padding: 76px 0;
  color: var(--white);
  background: var(--black);
}

.newsletter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.newsletter h2 {
  max-width: 760px;
  font-size: clamp(2rem, 3.8vw, 4rem);
  text-transform: uppercase;
}

.contact {
  background: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  color: var(--muted);
  font-weight: 800;
}

.contact-details a {
  color: var(--black);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 30px;
}

.contact-form label {
  display: grid;
  gap: 9px;
  color: var(--black);
  font-weight: 900;
  font-size: 0.88rem;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: var(--radius);
  outline: none;
  background: #fbfaf7;
  color: var(--black);
  padding: 14px 15px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(182, 150, 93, 0.18);
}

.contact-form .invalid {
  border-color: #b43d3d;
}

.footer {
  color: rgba(255, 255, 255, 0.72);
  background: #050505;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.6fr 0.6fr 0.8fr;
  gap: 36px;
  padding: 62px 0;
}

.footer img {
  margin-bottom: 18px;
}

.footer h3 {
  margin-bottom: 18px;
  color: var(--gold-soft);
  font-family: Cinzel, Georgia, serif;
}

.footer a,
.footer span {
  display: block;
  margin: 10px 0;
}

.footer__base {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px;
  text-align: center;
}

.footer__base span {
  display: inline;
  margin: 0;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 70;
  max-width: min(420px, calc(100vw - 48px));
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  box-shadow: var(--shadow);
  transform: translateY(24px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes spin {
  to { transform: rotate(1turn); }
}

@keyframes logoReveal {
  0% { opacity: 0; transform: scale(0.84); filter: blur(12px); }
  100% { opacity: 1; transform: scale(1); filter: blur(0); }
}

@keyframes phraseCycle {
  0%, 12% { opacity: 0; transform: translateY(12px); }
  18%, 78% { opacity: 1; transform: translateY(0); }
  88%, 100% { opacity: 0; transform: translateY(-12px); }
}

@media (max-width: 1100px) {
  .hero__inner,
  .property-feature,
  .legacy__grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .division-grid,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__auction-card {
    max-width: 620px;
  }
}

@media (max-width: 760px) {
  .container {
    width: calc(100% - 28px);
  }

  .navbar {
    min-height: 76px;
  }

  .brand img {
    width: 176px;
    height: 58px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 86px;
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 12px;
  }

  .hero__inner {
    padding: 76px 0 54px;
  }

  .hero__media {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.64)),
      url("assets/commercial-auction-collage.svg") center top 180px / 900px auto no-repeat,
      #090909;
  }

  h1 {
    font-size: clamp(2.4rem, 11vw, 3.8rem);
  }

  .section,
  .legacy,
  .process {
    padding: 74px 0;
  }

  .auction-listing,
  .division-grid,
  .service-grid,
  .process-steps,
  .contact-form,
  .footer__grid,
  .property-facts {
    grid-template-columns: 1fr;
  }

  .auction-listing {
    align-items: stretch;
  }

  .division-card {
    min-height: 330px;
  }

  .newsletter__inner {
    display: grid;
  }

  .contact-form .full {
    grid-column: auto;
  }

  .loader__status {
    bottom: 24%;
  }

  .loader__phrases {
    bottom: 16%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
