* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0b0b0a;
  --surface: #11110f;
  --text: #f1eee6;
  --muted: #aaa69b;
  --gold: #c6a56a;
  --line: rgba(241, 238, 230, 0.16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  padding: 26px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .35s ease, padding .35s ease, backdrop-filter .35s ease;
}

.site-header.scrolled {
  background: rgba(11, 11, 10, .88);
  backdrop-filter: blur(14px);
  padding-top: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.brand { display: inline-flex; align-items: center; width: 230px; }
.brand-logo { display: block; width: 230px; height: auto; max-height: 92px; object-fit: contain; object-position: center; mix-blend-mode: screen; }
.brand-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 31px;
  letter-spacing: 6px;
  line-height: .8;
}
.brand-tagline {
  margin-top: 7px;
  font-size: 7px;
  letter-spacing: 3.2px;
  color: var(--muted);
}
.brand-mark {
  width: 66px;
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 7px 0 1px;
}
.brand-mark i { height: 1px; background: var(--gold); flex: 1; }
.brand-mark span {
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.nav { display: flex; gap: 32px; align-items: center; }
.nav a {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .25s ease;
}
.nav a:hover { color: var(--text); }
.nav .nav-cta {
  border: 1px solid var(--gold);
  color: var(--text);
  padding: 10px 16px;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 150px 9vw 100px;
  background:
    radial-gradient(circle at 80% 25%, rgba(198,165,106,.12), transparent 30%),
    linear-gradient(115deg, #0b0b0a 0%, #11110f 60%, #0a0a09 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11,11,10,.92), rgba(11,11,10,.35)),
    radial-gradient(circle at 78% 50%, rgba(198,165,106,.08), transparent 25%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 850px; }
.eyebrow {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 23px;
}
h1, h2 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.02;
}
h1 { font-size: clamp(60px, 8.4vw, 120px); letter-spacing: -1px; }
h1 em, h2 em { color: var(--gold); font-style: italic; }
.hero-copy {
  max-width: 610px;
  color: var(--muted);
  font-size: 15px;
  margin: 35px 0;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 9px;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--text); color: #111; }
.button-outline { border-color: var(--line); color: var(--text); }
.button-outline:hover { border-color: var(--gold); }
.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 35px;
  left: 9vw;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 8px;
  letter-spacing: 3px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.scroll-cue span { width: 38px; height: 1px; background: var(--gold); }

.section { padding: 130px 9vw; border-top: 1px solid var(--line); }
.section-label {
  color: #716d63;
  font-size: 8px;
  letter-spacing: 3px;
  margin-bottom: 60px;
}
.about { background: var(--surface); }
.about-grid, .contact-grid, .enquiry-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 10vw;
  align-items: start;
}
h2 { font-size: clamp(50px, 6.3vw, 86px); }
.about-copy { max-width: 590px; padding-top: 8px; }
.about-copy p, .contact-intro {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 24px;
}
.contact-intro { margin-top: 26px; }

.contact-grid { align-items: center; }
.contact-card {
  border-top: 1px solid var(--gold);
  padding-top: 28px;
}
.contact-name { font-family: var(--serif); font-size: 36px; }
.contact-role { color: var(--muted); font-size: 11px; letter-spacing: 1px; margin-bottom: 30px; }
.contact-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.contact-row span {
  color: var(--gold);
  font-size: 8px;
  letter-spacing: 2px;
}
.contact-row strong { font-size: 11px; font-weight: 500; }
.contact-buttons { display: flex; gap: 10px; margin-top: 30px; flex-wrap: wrap; }

.enquiry { background: #0d0d0c; }
.enquiry-form {
  padding: 38px;
  background: #11110f;
  border: 1px solid var(--line);
}
.enquiry-form label {
  display: block;
  color: var(--gold);
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 21px;
}
.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  margin-top: 9px;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  outline: none;
  resize: vertical;
  background: transparent;
  color: var(--text);
}
.enquiry-form input:focus,
.enquiry-form textarea:focus { border-bottom-color: var(--gold); }
.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder { color: #67645d; }
.submit-button { margin-top: 5px; width: 100%; border: 0; }
.form-note { margin-top: 15px; color: #67645d; font-size: 9px; text-align: center; }

.footer {
  padding: 45px 9vw;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}
.footer-brand { display: flex; flex-direction: column; }
.footer-brand span { font-family: var(--serif); font-size: 28px; letter-spacing: 5px; }
.footer-brand small { font-size: 9px; letter-spacing: 3px; color: var(--muted); }
.footer p { color: #66635c; font-size: 9px; }

.floating-whatsapp {
  position: fixed;
  z-index: 30;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: rgba(11,11,10,.92);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 35px rgba(0,0,0,.35);
}
.whatsapp-icon {
  width: 27px;
  height: 27px;
  color: var(--gold);
  display: block;
  transition: transform .2s ease, filter .2s ease;
}
.floating-whatsapp:hover .whatsapp-icon {
  transform: scale(1.08);
  filter: drop-shadow(0 0 5px rgba(201,166,91,.45));
}
.floating-whatsapp span {
  position: absolute;
  right: 67px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  color: var(--text);
  background: #171714;
  padding: 8px 11px;
  font-size: 9px;
  letter-spacing: 1px;
  transition: opacity .2s ease;
}
.floating-whatsapp:hover span { opacity: 1; }

@media (max-width: 800px) {
  .site-header { padding: 18px 5vw; }
  .brand { width: 180px; }
  .brand-logo { width: 180px; max-height: 72px; }
  .nav { gap: 15px; }
  .nav a:not(.nav-cta) { display: none; }
  .nav .nav-cta { padding: 8px 12px; font-size: 8px; }
  .hero { padding: 140px 7vw 90px; min-height: 92vh; }
  h1 { font-size: clamp(54px, 15vw, 82px); }
  .hero-copy { font-size: 13px; }
  .section { padding: 90px 7vw; }
  .section-label { margin-bottom: 40px; }
  .about-grid, .contact-grid, .enquiry-grid { grid-template-columns: 1fr; gap: 55px; }
  h2 { font-size: clamp(48px, 13vw, 70px); }
  .contact-row { flex-direction: column; gap: 5px; }
  .enquiry-form { padding: 25px 20px; }
  .footer { flex-direction: column; align-items: flex-start; padding: 40px 7vw; }
  .floating-whatsapp { right: 16px; bottom: 16px; }
}
