@font-face {
  font-family: "Monteria";
  src:
    local("Monteria"),
    local("Monteria Regular");
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--paper-solid);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 78px,
    rgba(21, 39, 37, 0.03) 78px,
    rgba(21, 39, 37, 0.03) 79px
  );
  opacity: 0.35;
}

.page-shell {
  width: min(1200px, calc(100% - 2rem));
  margin: 1rem auto 2rem;
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  background: transparent;
}

.site-header,
.sale-hero,
.enquiry-panel,
.site-footer {
  padding-left: clamp(1.25rem, 4vw, 3.25rem);
  padding-right: clamp(1.25rem, 4vw, 3.25rem);
}

.site-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1.125rem;
  padding-top: 1.1rem;
  padding-bottom: 1rem;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 1.125rem;
  flex: 1;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.crest {
  width: 3.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
  border-radius: 1.1rem;
  background:
    linear-gradient(145deg, rgba(214, 170, 99, 0.95), rgba(185, 107, 60, 0.98));
  color: #fff9f1;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  transform: rotate(-6deg);
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.eyebrow,
.section-kicker,
.sale-band-label,
label {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: var(--muted);
}

.wordmark {
  font-family: "Monteria", "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 3.2vw, 4rem);
  font-weight: 500;
  line-height: 0.95;
}

h1,
h2 {
  font-family: "Cormorant Garamond", serif;
  line-height: 0.94;
}

h1 {
  font-size: clamp(3.5rem, 8vw, 7rem);
  margin-top: 0.55rem;
  max-width: none;
  text-wrap: pretty;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-top: 0.5rem;
}

p,
dd,
dt,
label {
  line-height: 1.6;
}

.sale-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.sale-hero {
  padding-top: 2.8rem;
  padding-bottom: 3.1rem;
}

.sale-strapline {
  margin-top: 1.2rem;
  max-width: 58ch;
  font-size: 1.08rem;
  color: var(--muted);
}

.sale-band {
  margin-top: 2.2rem;
  padding: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.5rem 2rem;
  align-items: start;
  background: rgba(240, 224, 204, 0.82);
  border-radius: 1.6rem;
  position: relative;
  overflow: hidden;
}

.sale-band::after {
  content: "";
  position: absolute;
  inset: auto -4% -18% auto;
  width: 12rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(214, 170, 99, 0.2);
}

.sale-band-text,
.enquiry-intro {
  color: var(--muted);
}

.particulars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
}

.particulars div {
  padding-top: 0.8rem;
  border-top: 1px solid rgba(21, 39, 37, 0.08);
}

dt {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

dd {
  font-weight: 600;
}

.enquiry-panel {
  position: relative;
  z-index: 1;
  padding-top: 1.6rem;
  padding-bottom: 1.75rem;
  display: grid;
  grid-template-columns: minmax(240px, 0.6fr) minmax(0, 1fr);
  gap: 2rem;
  border-top: 1px solid rgba(21, 39, 37, 0.08);
}

.enquiry-heading {
  max-width: 24rem;
}

.enquiry-intro {
  margin-top: 0.8rem;
  font-size: 0.98rem;
}

form {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

label {
  font-weight: 600;
}

label span {
  color: var(--accent);
}

input,
textarea {
  width: 100%;
  padding: 0.8rem 0 0.7rem;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(21, 39, 37, 0.14);
  outline: none;
  transition: border-color 180ms ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(95, 110, 105, 0.75);
}

input:focus,
textarea:focus {
  border-color: var(--brand);
}

textarea {
  min-height: 7.5rem;
  resize: vertical;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0 1.375rem;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  border: 0;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--brand);
  color: #f7f0e4;
}

.button-primary:hover {
  background: #1d4947;
}

.site-footer {
  position: relative;
  z-index: 1;
  padding-top: 1.2rem;
  padding-bottom: 1rem;
  border-top: 1px solid rgba(21, 39, 37, 0.08);
}

.site-footer p {
  font-size: 0.85rem;
  color: var(--muted);
}

@media (max-width: 920px) {
  .sale-band,
  .enquiry-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .page-shell {
    width: min(calc(100% - 1rem), 1200px);
    margin: 0.5rem auto 1rem;
    border-radius: 1.4rem;
  }

  .site-header {
    gap: 0.75rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .sale-band {
    padding: 1.4rem;
    border-radius: 1.2rem;
  }
}
