:root {
  color-scheme: dark;
  --black: #070707;
  --charcoal: #131313;
  --graphite: #252423;
  --line: rgba(232, 198, 123, 0.22);
  --gold: #d6ad62;
  --gold-soft: #f0d08c;
  --ivory: #f6f0e6;
  --muted: #bcb4a9;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ivory);
  font-family: Inter, Arial, sans-serif;
}

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

.site-header {
  align-items: center;
  background: rgba(7, 7, 7, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 18px clamp(20px, 5vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: flex;
  font-size: 0.9rem;
  font-weight: 700;
  gap: 10px;
  height: 36px;
  text-transform: uppercase;
}

.brand-monogram {
  align-items: center;
  border: 1px solid rgba(214, 173, 98, 0.58);
  color: var(--gold-soft);
  display: inline-flex;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.86rem;
  font-weight: 700;
  height: 30px;
  justify-content: center;
  line-height: 1;
  min-width: 38px;
}

.nav {
  align-items: center;
  display: flex;
  gap: clamp(14px, 3vw, 32px);
  font-size: 0.9rem;
  color: var(--muted);
}

.nav a:hover,
.header-cta:hover,
.socials a:hover {
  color: var(--gold-soft);
}

.header-cta {
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero {
  min-height: 96vh;
  overflow: hidden;
  position: relative;
}

.hero-image,
.hero-shade {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.9) 0%, rgba(7, 7, 7, 0.58) 44%, rgba(7, 7, 7, 0.2) 100%),
    linear-gradient(0deg, #070707 0%, rgba(7, 7, 7, 0.08) 38%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 96vh;
  padding: 130px clamp(22px, 7vw, 90px) 90px;
  position: relative;
  width: min(900px, 100%);
  z-index: 2;
}

.eyebrow,
.section-kicker {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.02;
}

h1 {
  font-size: clamp(2.85rem, 6vw, 5.35rem);
  margin-bottom: 24px;
  max-width: 880px;
}

h2 {
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  margin-bottom: 0;
}

h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.hero-copy {
  color: #ddd3c5;
  font-size: clamp(1rem, 2vw, 1.24rem);
  line-height: 1.7;
  max-width: 610px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.button {
  align-items: center;
  border: 1px solid var(--line);
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  text-transform: uppercase;
}

.button.primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #15110b;
}

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

.band,
.section {
  padding: clamp(70px, 9vw, 118px) clamp(22px, 6vw, 70px);
}

.band {
  background: linear-gradient(135deg, #101010, #191817);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.intro,
.split,
.enquiry,
.footer {
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  margin: 0 auto;
}

.intro,
.split,
.enquiry {
  align-items: start;
}

.intro-copy,
.section-heading,
.split,
.service-grid,
.statement,
.faq-list,
.enquiry,
.footer {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max);
}

.intro-points {
  display: grid;
  gap: 16px;
}

.intro-points div,
.service-card,
.timeline div,
details,
.contact-form {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.intro-points div {
  display: grid;
  gap: 8px;
  padding: 22px;
}

.intro-points strong {
  color: var(--gold-soft);
}

.intro-points span,
.service-card p,
.timeline p,
details p,
.enquiry-copy p,
.form-note {
  color: var(--muted);
  line-height: 1.7;
}

.section-heading {
  margin-bottom: 34px;
}

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

.service-card {
  min-height: 265px;
  padding: 26px;
}

.service-card span,
.timeline span {
  color: var(--gold);
  display: inline-block;
  font-weight: 800;
  margin-bottom: 42px;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline div {
  padding: 24px;
}

.timeline span {
  margin-bottom: 24px;
}

.statement {
  border-left: 1px solid var(--gold);
  padding-left: clamp(22px, 5vw, 54px);
}

.statement p {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  padding: 22px 24px;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

summary::marker {
  color: var(--gold);
}

details p {
  margin: 16px 0 0;
}

.socials {
  display: flex;
  gap: 18px;
  margin-top: 24px;
}

.socials a {
  color: var(--gold);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
}

label,
legend {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

label {
  display: grid;
  gap: 8px;
}

input,
select,
textarea {
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--ivory);
  font: inherit;
  min-height: 46px;
  padding: 12px 14px;
  width: 100%;
}

input::placeholder,
textarea::placeholder {
  color: rgba(246, 240, 230, 0.42);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  outline: none;
}

fieldset {
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 16px;
}

legend {
  color: var(--gold);
  padding: 0 8px;
}

.check-option {
  align-items: center;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  display: flex;
  gap: 10px;
  min-height: 44px;
  padding: 10px 12px;
  text-transform: none;
}

.check-option input {
  accent-color: var(--gold);
  height: 16px;
  min-height: 16px;
  padding: 0;
  width: 16px;
}

.check-option span {
  color: var(--ivory);
  font-size: 0.92rem;
  font-weight: 700;
}

.form-submit[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.form-note {
  font-size: 0.88rem;
  margin: 0;
}

.form-note.success {
  color: #d8f2cf;
}

.form-note.error {
  color: #ffd0c7;
}

.honey-field {
  display: none;
}

.footer {
  align-items: center;
  color: var(--muted);
  font-size: 0.9rem;
  padding: 28px clamp(22px, 6vw, 70px);
}

.footer-logo {
  display: block;
  height: 92px;
  object-fit: contain;
  object-position: left center;
  width: 180px;
}

.thanks-page {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.86), rgba(7, 7, 7, 0.58)),
    url("assets/hero-luxury.png") center / cover;
  display: flex;
  min-height: 100vh;
  padding: clamp(22px, 6vw, 70px);
}

.thanks-panel {
  background: rgba(7, 7, 7, 0.78);
  border: 1px solid var(--line);
  max-width: 680px;
  padding: clamp(28px, 6vw, 58px);
}

.thanks-brand {
  margin-bottom: 54px;
}

.thanks-panel h1 {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
}

.thanks-panel p:not(.section-kicker) {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

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

  .intro,
  .split,
  .enquiry,
  .footer {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand span:last-child {
    display: inline;
    font-size: 0.74rem;
  }

  .brand-monogram {
    font-size: 0.78rem;
    height: 28px;
    min-width: 36px;
  }

  .hero-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 7, 7, 0.92), rgba(7, 7, 7, 0.64)),
      linear-gradient(0deg, #070707 0%, rgba(7, 7, 7, 0.05) 48%);
  }

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

  .service-card {
    min-height: 220px;
  }
}
