:root {
  --bg: #1b1b1b;
  --panel: #1a1a1a;
  --panel-2: #222222;
  --text: #f5f3ef;
  --muted: #a7a39d;
  --muted-2: #77736d;
  --line: rgba(255,255,255,.10);
  --line-strong: rgba(255,255,255,.18);
  --accent: #c5a47e;
  --accent-dark: #8f7558;
  --accent-soft: #d6c0a1;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }

.site-shell { min-height: 100vh; display: grid; grid-template-columns: 310px minmax(0, 1fr); }
.side-panel {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  background: #181818; border-right: 1px solid var(--line);
}
.side-panel::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 35% 20%, rgba(197,164,126,.12), transparent 34%), linear-gradient(180deg, rgba(255,255,255,.015), transparent 50%);
  pointer-events: none;
}
.side-inner { position: relative; z-index: 1; height: 100%; padding: 42px 34px 30px; display: flex; flex-direction: column; }
.brand-mark { display: inline-flex; width: fit-content; }
.mark-frame { width: 58px; height: 58px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); }
.mark-frame img { width: 35px; height: 35px; filter: brightness(0) invert(1); opacity: .92; }
.side-copy { margin-top: 82px; }
.eyebrow { margin: 0 0 13px; color: var(--accent-soft); text-transform: uppercase; letter-spacing: .20em; font-size: 10px; font-weight: 600; }
.side-copy h1 { margin: 0; font: 600 31px/1.08 var(--serif); letter-spacing: -.025em; }
.side-copy h1 span { color: #c5c2bd; font-style: italic; }
.side-rule { width: 46px; height: 1px; background: var(--accent); margin: 26px 0 22px; }
.side-copy > p:last-child { max-width: 225px; color: var(--muted); font-size: 13px; line-height: 1.8; }
.side-contact { margin-top: auto; display: flex; flex-direction: column; gap: 4px; }
.contact-label { margin-bottom: 7px; color: var(--muted-2); text-transform: uppercase; letter-spacing: .16em; font-size: 9px; }
.side-contact a { color: #ddd9d4; font-size: 13px; transition: color .25s; }
.side-contact a:hover, .side-social a:hover { color: #fff; }
.side-social { margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--line); }
.side-social a { color: var(--accent-soft); font-size: 11px; text-transform: uppercase; letter-spacing: .16em; }

.main-content { min-width: 0; background: var(--bg); }
.topbar { height: 84px; padding: 0 6.5%; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.top-contact { display: inline-flex; align-items: center; gap: 11px; color: #c9c6c1; font-size: 11px; text-transform: uppercase; letter-spacing: .13em; transition: color .25s; }
.top-contact:hover { color: #fff; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px rgba(197,164,126,.11); }
.arrow { color: var(--accent-soft); font-size: 15px; }

.hero { position: relative; min-height: 630px; padding: 104px 10% 95px; display: flex; align-items: center; overflow: hidden; }
.hero-grid { position: absolute; inset: 0; opacity: .32; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 70px 70px; mask-image: linear-gradient(to right, rgba(0,0,0,.65), transparent 78%); pointer-events: none; }
.hero::before { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; left: 54%; top: 46%; transform: translate(-50%,-50%); background: radial-gradient(circle, rgba(197,164,126,.13), transparent 66%); pointer-events: none; }
.hero-content { position: relative; z-index: 2; max-width: 690px; }
.hero h2 { margin: 0; font: 600 clamp(70px, 8.2vw, 126px)/.83 var(--serif); letter-spacing: -.055em; }
.hero h2 em { color: #aaa6a0; font-style: italic; font-weight: 500; }
.hero-lead { margin: 38px 0 9px; max-width: 590px; color: #ddd9d4; font-size: 17px; line-height: 1.65; }
.hero-lead strong { color: #fff; font-weight: 600; }
.hero-text { max-width: 575px; color: var(--muted); font-size: 13px; line-height: 1.85; }
.hero-actions { margin-top: 31px; display: flex; flex-wrap: wrap; gap: 12px; }
.btn { min-height: 50px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid transparent; cursor: pointer; text-transform: uppercase; letter-spacing: .10em; font-size: 10px; font-weight: 600; transition: transform .25s, background .25s, border-color .25s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #d0ae83; }
.btn-secondary { border-color: var(--line-strong); color: #c8c4bf; background: rgba(255,255,255,.015); }
.btn-secondary:hover { border-color: rgba(255,255,255,.32); }
.wa-icon { font-size: 17px; line-height: 1; transform: rotate(-30deg); }
.mini-note { margin-top: 45px; display: flex; align-items: center; gap: 13px; color: var(--muted-2); font-size: 10px; letter-spacing: .04em; }
.note-line { width: 34px; height: 1px; background: var(--accent); }
.hero-emblem { position: absolute; z-index: 1; right: 8%; top: 50%; width: min(33vw, 390px); aspect-ratio: 1; transform: translateY(-50%); display: grid; place-items: center; opacity: .16; }
.hero-emblem .emblem-ring { position: absolute; inset: 7%; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; }
.hero-emblem .emblem-ring::before, .hero-emblem .emblem-ring::after { content: ""; position: absolute; inset: 11%; border: 1px solid rgba(197,164,126,.55); border-radius: 50%; }
.hero-emblem .emblem-ring::after { inset: 31%; border-color: rgba(255,255,255,.18); }
.hero-emblem img { width: 69%; filter: brightness(0) invert(1); }

.contact-section { padding: 90px 10%; border-top: 1px solid var(--line); background: #181818; }
.section-heading h3, .disclaimer-section h3 { margin: 0; font: 500 43px/1.1 var(--serif); letter-spacing: -.025em; }
.contact-grid { margin-top: 44px; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.contact-card { min-height: 235px; position: relative; padding: 34px; background: #1b1b1b; display: flex; flex-direction: column; align-items: flex-start; }
.card-number { position: absolute; right: 25px; top: 22px; color: #4e4b48; font: 500 31px var(--serif); }
.card-label { color: var(--muted-2); font-size: 9px; letter-spacing: .17em; text-transform: uppercase; }
.contact-card > a { margin-top: 11px; font: 500 23px/1.25 var(--serif); color: #e7e3de; transition: color .25s; }
.contact-card > a:hover { color: var(--accent-soft); }
.contact-card p { margin: auto 0 0; max-width: 330px; color: var(--muted); font-size: 11px; line-height: 1.7; }
.outline-button { margin-top: 20px; padding: 0 0 8px; border: 0; border-bottom: 1px solid var(--accent); background: transparent; color: #e7e3de; cursor: pointer; font: 500 23px/1.25 var(--serif); }
.outline-button span { color: var(--accent-soft); font: 18px var(--sans); }

.disclaimer-section { margin: 0 10%; padding: 72px 0; display: grid; grid-template-columns: 65px minmax(0, 680px); gap: 28px; border-bottom: 1px solid var(--line); }
.disclaimer-mark { width: 44px; height: 44px; border: 1px solid rgba(197,164,126,.55); display: grid; place-items: center; color: var(--accent-soft); font: 600 18px var(--serif); }
.disclaimer-section h3 { margin-bottom: 18px; font-size: 34px; }
.disclaimer-section p:not(.eyebrow) { margin: 0 0 10px; color: var(--muted); font-size: 11px; line-height: 1.8; }
.footer { min-height: 100px; padding: 28px 10%; display: flex; align-items: center; justify-content: space-between; gap: 25px; color: #64615e; font-size: 9px; text-transform: uppercase; letter-spacing: .10em; }

.modal { position: fixed; inset: 0; z-index: 20; display: none; align-items: center; justify-content: center; padding: 22px; }
.modal.is-open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.78); backdrop-filter: blur(5px); }
.modal-card { position: relative; z-index: 1; width: min(520px, 100%); padding: 38px; background: #202020; border: 1px solid var(--line-strong); box-shadow: 0 30px 90px rgba(0,0,0,.45); }
.modal-close { position: absolute; top: 12px; right: 15px; border: 0; background: transparent; color: #85817d; font-size: 28px; cursor: pointer; }
.modal-card h3 { margin: 0; font: 500 35px/1.12 var(--serif); }
.modal-intro { margin: 10px 0 25px; color: var(--muted); font-size: 11px; }
#enquiryForm { display: grid; gap: 16px; }
#enquiryForm label { display: grid; gap: 7px; color: #aaa6a1; text-transform: uppercase; letter-spacing: .11em; font-size: 9px; }
#enquiryForm input, #enquiryForm textarea { width: 100%; border: 1px solid var(--line-strong); outline: none; border-radius: 0; background: #171717; color: #f0ece7; padding: 12px 13px; font-size: 13px; text-transform: none; letter-spacing: 0; resize: vertical; }
#enquiryForm input:focus, #enquiryForm textarea:focus { border-color: var(--accent); }
#enquiryForm input::placeholder, #enquiryForm textarea::placeholder { color: #595653; }
.full { width: 100%; margin-top: 2px; }
body.modal-open { overflow: hidden; }

@media (max-width: 1000px) {
  .site-shell { grid-template-columns: 1fr; }
  .side-panel { position: relative; height: auto; min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .side-inner { padding: 25px 28px; display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: center; }
  .side-copy { margin-top: 0; }
  .side-copy h1 { font-size: 24px; }
  .side-copy > p:last-child, .side-rule { display: none; }
  .side-contact, .side-social { display: none; }
  .hero { min-height: 650px; padding-left: 8%; padding-right: 8%; }
  .hero-emblem { right: 2%; opacity: .12; }
  .contact-section { padding-left: 8%; padding-right: 8%; }
  .disclaimer-section { margin-left: 8%; margin-right: 8%; }
  .footer { padding-left: 8%; padding-right: 8%; }
}

@media (max-width: 680px) {
  .topbar { height: 67px; padding: 0 22px; }
  .hero { min-height: 650px; padding: 75px 25px 70px; }
  .hero h2 { font-size: clamp(64px, 19vw, 96px); }
  .hero-lead { margin-top: 30px; font-size: 15px; }
  .hero-emblem { width: 290px; right: -75px; top: 22%; transform: none; }
  .hero-content { margin-top: 65px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .contact-section { padding: 65px 25px; }
  .section-heading h3 { font-size: 37px; }
  .contact-grid { grid-template-columns: 1fr; }
  .disclaimer-section { margin: 0 25px; padding: 55px 0; grid-template-columns: 1fr; gap: 18px; }
  .footer { padding: 25px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .modal-card { padding: 32px 23px 25px; }
  .side-inner { padding: 21px 22px; grid-template-columns: auto 1fr; }
  .mark-frame { width: 48px; height: 48px; }
  .mark-frame img { width: 29px; height: 29px; }
}
