/* ===== Base ===== */
:root {
  --gold: #c9a96a;
  --gold-light: #e3cba0;
  --dark: #11150f;
  --dark-2: #1b2018;
  --cream: #f6f3ec;
  --text: #2a2e26;
  --muted: #7a7d74;
  --radius: 14px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Poppins", system-ui, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: "Cormorant Garamond", serif; font-weight: 600; line-height: 1.1; }

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

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(10, 14, 8, 0.65), rgba(10, 14, 8, 0));
  transition: background .3s ease, box-shadow .3s ease;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 48px);
  transition: padding .3s ease;
}
/* Solid bar once the user scrolls */
.site-header.scrolled {
  background: rgba(17, 21, 15, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
}
.site-header.scrolled .header-inner { padding-top: 12px; padding-bottom: 12px; }

.brand { display: flex; flex-direction: column; line-height: 1; }
.brand-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #fff;
}
.brand-sub {
  font-size: 0.6rem;
  letter-spacing: 5px;
  color: var(--gold);
  margin-top: 2px;
}

.primary-nav { display: flex; align-items: center; gap: clamp(18px, 2.6vw, 34px); }
.primary-nav a {
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  transition: color .2s;
}
.primary-nav a:hover { color: var(--gold-light); }
.nav-phone { display: inline-flex; align-items: center; gap: 7px; }
.nav-phone i { color: var(--gold); font-size: 0.95rem; }
.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold-light) !important;
  padding: 9px 20px;
  border-radius: 50px;
  transition: all .25s;
}
.nav-cta:hover { background: var(--gold); color: var(--dark) !important; }

/* Hamburger (hidden on desktop) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 25px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}

/* Anchor offset so sticky header doesn't cover section tops */
#about, #enquiry { scroll-margin-top: 84px; }

/* ===== Hero (banner image, shown in full) ===== */
.hero { position: relative; }
.hero-banner { width: 100%; background: var(--dark); }
.hero-banner img {
  display: block;
  width: 100%;
  height: auto;   /* full image, never cropped on any screen */
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.8rem;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.kicker.dark { color: var(--gold); }

.title {
  font-size: clamp(2.6rem, 11vw, 6.2rem);
  letter-spacing: 2px;
  text-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.title-accent {
  color: var(--gold);
  background: linear-gradient(120deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0 14px;
  font-size: clamp(1rem, 3vw, 1.4rem);
  letter-spacing: 8px;
  font-weight: 500;
  color: #fff;
}
.coming-soon .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 1.6s infinite;
}

.location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  letter-spacing: 3px;
  font-size: 0.9rem;
  margin-bottom: 38px;
}
.location i { color: var(--gold); font-size: 1.1rem; display: inline-flex; line-height: 0; }

/* Flaticon glyphs sit on the text baseline by default */
.fi { line-height: 0; vertical-align: middle; }

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.btn {
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 1px;
  padding: 14px 32px;
  border-radius: 50px;
  border: 1px solid transparent;
  transition: all .25s ease;
}
.btn-primary {
  background: linear-gradient(120deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-weight: 600;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(201,169,106,.4); }
.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-block { width: 100%; margin-top: 8px; }

/* ===== Sections ===== */
.section { background: var(--cream); padding: clamp(60px, 9vw, 110px) 20px; }
.section-alt { background: #efe9dd; }
.section-inner { max-width: 1080px; margin: 0 auto; text-align: center; }
.section h2 { font-size: clamp(1.8rem, 6vw, 3.4rem); margin: 8px 0 20px; color: var(--dark); }
.section-actions { margin-top: 28px; display: flex; justify-content: center; }
.lead { max-width: 680px; margin: 0 auto 50px; color: var(--muted); font-size: clamp(0.95rem, 2.6vw, 1.05rem); }

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 30px;
}
.feature {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px 26px;
  text-align: center;
  box-shadow: 0 8px 26px rgba(0,0,0,0.06);
  transition: transform .25s, box-shadow .25s;
}
.feature:hover { transform: translateY(-6px); box-shadow: 0 16px 38px rgba(0,0,0,0.1); }
.feature-icon { font-size: 2.2rem; margin-bottom: 14px; color: var(--gold); line-height: 0; }
.feature-icon i { display: inline-flex; }
.feature h3 { font-size: 1.35rem; color: var(--dark); margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 0.92rem; }

/* ===== Enquiry section ===== */
.enquiry-section {
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(201,169,106,0.10), transparent 55%),
    var(--cream);
}
.enquiry-wrap {
  max-width: 940px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.14);
}

/* Left info panel */
.enquiry-info {
  position: relative;
  color: #fff;
  padding: clamp(36px, 5vw, 52px) clamp(28px, 4vw, 44px);
  background:
    radial-gradient(130% 120% at 0% 0%, rgba(201,169,106,0.22), transparent 55%),
    linear-gradient(150deg, var(--dark-2), var(--dark));
  display: flex;
  flex-direction: column;
}
.enquiry-info .kicker { color: var(--gold); }
.enquiry-info h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.7rem); margin: 6px 0 16px; }
.enquiry-info-text { color: rgba(255,255,255,0.72); font-size: 0.95rem; margin-bottom: 26px; }
.enquiry-points { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.enquiry-points li { display: flex; align-items: center; gap: 12px; font-size: 0.92rem; color: rgba(255,255,255,0.9); }
.enquiry-points i { color: var(--gold); font-size: 1.05rem; display: inline-flex; line-height: 0; }
.enquiry-call {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-light);
}
.enquiry-call i { color: var(--gold); font-size: 1.2rem; display: inline-flex; line-height: 0; }
.enquiry-call:hover { color: #fff; }

/* Right form panel */
.enquiry-form-panel { padding: clamp(34px, 4.5vw, 48px) clamp(26px, 4vw, 42px); }
.enquiry-form-panel h3 { font-size: 1.8rem; color: var(--dark); margin-bottom: 22px; }

.form-note { font-size: 0.78rem; color: var(--muted); text-align: center; margin-top: 14px; }
.form-note a { color: #9a7b3d; text-decoration: underline; }

/* ===== Legal pages ===== */
.legal-hero {
  background: linear-gradient(to bottom, var(--dark-2), var(--dark));
  color: #fff;
  text-align: center;
  padding: 130px 20px 60px;
}
.legal-hero h1 { font-size: clamp(2.4rem, 6vw, 3.6rem); color: #fff; }
.legal-hero .title-accent { display: inline; }
.legal-hero p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-top: 8px; }
.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(40px, 7vw, 70px) 22px 80px;
}
.legal h2 {
  font-size: 1.7rem;
  color: var(--dark);
  margin: 34px 0 10px;
}
.legal h2:first-child { margin-top: 0; }
.legal p, .legal li { color: var(--text); font-size: 0.96rem; margin-bottom: 12px; }
.legal ul { padding-left: 22px; margin-bottom: 12px; }
.legal a { color: #9a7b3d; text-decoration: underline; }
.legal .back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 0.9rem;
}
.legal .back-link:hover { color: var(--gold); }

/* ===== Thank-you page ===== */
.thankyou {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(201,169,106,0.14), transparent 60%),
    linear-gradient(to bottom, var(--dark-2), var(--dark));
}
.thankyou-card { max-width: 540px; animation: fadeUp .8s ease both; }
.thankyou-icon {
  width: 86px; height: 86px;
  margin: 0 auto 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  color: var(--dark);
  background: linear-gradient(120deg, var(--gold), var(--gold-light));
  box-shadow: 0 12px 34px rgba(201,169,106,0.35);
  animation: popIn .5s .15s ease both;
}
.thankyou-icon i { display: inline-flex; line-height: 0; }
.thankyou .brand-sub { color: var(--gold); margin-bottom: 10px; font-size: 0.7rem; }
.thankyou h1 { font-size: clamp(2.6rem, 8vw, 4rem); margin-bottom: 16px; }
.thankyou-text { color: rgba(255,255,255,0.78); font-size: 1rem; margin-bottom: 34px; }
.thankyou-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.thankyou-actions .btn { display: inline-flex; align-items: center; gap: 8px; }
.btn-ghost-dark { border-color: rgba(255,255,255,0.4); }

/* ===== Footer (simple) ===== */
.footer { background: var(--dark); color: #fff; padding: 40px 20px; text-align: center; }
.footer-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  letter-spacing: 3px;
  color: #fff;
  margin-bottom: 12px;
}
.footer-brand strong { color: var(--gold-light); font-weight: 700; }
.footer-links { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,0.75); font-size: 0.85rem; transition: color .2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-copy { color: rgba(255,255,255,0.45); font-size: 0.75rem; }

/* ===== Fixed buttons ===== */
.fixed-buttons {
  position: fixed;
  right: 20px; bottom: 24px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fab {
  width: 54px; height: 54px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 8px 22px rgba(0,0,0,0.28);
  transition: transform .2s;
  animation: floatIn .5s ease both;
}
.fab:hover { transform: scale(1.1); }
.fab i { font-size: 1.35rem; display: inline-flex; line-height: 0; }
.fab-call { background: #2d6cdf; }
.fab-wa { background: #25d366; }
.fab-form { background: var(--gold); color: var(--dark); }

/* ===== Modal ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.open { display: flex; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 8, 0.7);
  backdrop-filter: blur(4px);
  animation: fadeIn .25s ease;
}
.modal-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 40px 34px 34px;
  width: 100%;
  max-width: 430px;
  box-shadow: var(--shadow);
  animation: popIn .3s ease;
}
.modal-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
}
.modal-card h3 { font-size: 2rem; color: var(--dark); }
.modal-sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 22px; }

.field { margin-bottom: 16px; text-align: left; }
.field label { display: block; font-size: 0.8rem; font-weight: 500; margin-bottom: 6px; color: var(--text); }
.field input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d8d4c8;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 0.92rem;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,106,0.2);
}
.field input.invalid { border-color: #d9534f; }
.error { display: block; color: #d9534f; font-size: 0.75rem; margin-top: 4px; min-height: 14px; }

.form-success {
  background: #e8f6ec;
  color: #1c7a3d;
  border: 1px solid #b6e2c3;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.88rem;
  margin-top: 14px;
  text-align: center;
}

/* ===== Animations ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes popIn { from { opacity: 0; transform: translateY(16px) scale(.96); } to { opacity: 1; transform: none; } }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(1.4); } }
@keyframes floatIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: none; } }

/* ===== Responsive ===== */
/* Scale the whole type system down proportionally on smaller screens
   (all rem-based sizes shrink together, so nothing looks oversized). */
@media (max-width: 860px) {
  html { font-size: 93.75%; } /* 15px */
}

/* Mobile header: hamburger + slide-in menu */
@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(80vw, 320px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    padding: 80px 38px;
    background: rgba(17, 21, 15, 0.98);
    backdrop-filter: blur(8px);
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.4);
    transform: translateX(100%);
    transition: transform .32s ease;
  }
  .primary-nav.open { transform: translateX(0); }
  .primary-nav a { font-size: 1.05rem; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  body.nav-open { overflow: hidden; }
}

@media (max-width: 760px) {
  .enquiry-wrap { grid-template-columns: 1fr; max-width: 480px; }
  .enquiry-call { margin-top: 18px; }
}

@media (max-width: 640px) {
  html { font-size: 87.5%; }  /* 14px */
  .feature { padding: 26px 20px; }
  .fab { width: 50px; height: 50px; }
  .fixed-buttons { right: 14px; bottom: 16px; gap: 12px; }
  .modal-card { padding: 32px 20px 24px; }
  .modal-card h3 { font-size: 1.7rem; }
}

@media (max-width: 380px) {
  html { font-size: 82.5%; }  /* ~13px */
}
