/* The London Landing — brand stylesheet */
:root {
  --navy: #003B5C;
  --navy-dark: #002438;
  --gold: #E3B341;
  --white: #FFFFFF;
  --cream: #F7F5F0;
  --ink: #1c1c1c;
  --grey: #5c6570;
  --line: #e4e0d8;
  --radius: 10px;
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Open Sans", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
}
h1, h2, h3, h4 {
  font-family: "Open Sans", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.1px;
  margin: 0 0 0.5em;
  color: var(--navy);
}
p { margin: 0 0 1em; color: var(--ink); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  border: 1px solid var(--gold);
  transition: all 0.2s ease;
  cursor: pointer;
}
.btn-primary { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }
.btn-primary:hover { background: #cf9f34; }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border-color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--navy); }
.btn-block { width: 100%; text-align: center; }
.btn-disabled {
  background: transparent;
  color: var(--grey);
  border-color: var(--line);
  cursor: default;
}

/* Header */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  color: var(--navy);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #fff;
  flex-shrink: 0;
}
.logo img { height: 64px; width: auto; }
.logo span { color: var(--gold); }
nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 26px;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
nav.main-nav a { opacity: 0.9; }
nav.main-nav a:hover, nav.main-nav a.active { opacity: 1; color: var(--gold); }
.nav-cta { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.nav-phone { font-size: 13px; font-weight: 700; white-space: nowrap; }
.nav-phone a:hover { color: var(--gold); }
.menu-toggle { display: none; background: none; border: none; color: var(--navy); font-size: 26px; cursor: pointer; }

@media (max-width: 900px) {
  nav.main-nav { display: none; width: 100%; order: 3; }
  nav.main-nav.open { display: block; }
  nav.main-nav ul { flex-direction: column; gap: 0; }
  nav.main-nav ul li { border-top: 1px solid rgba(255,255,255,0.12); }
  nav.main-nav ul li a { display: block; padding: 14px 0; }
  .nav-wrap { flex-wrap: wrap; }
  .menu-toggle { display: block; }
  .nav-cta .btn { display: none; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 74vh;
  display: flex;
  align-items: center;
  color: #fff;
  background: linear-gradient(rgba(0,36,56,0.78), rgba(0,59,92,0.68)),
    linear-gradient(135deg, #003B5C 0%, #00527d 100%);
}
.hero-inner { max-width: 700px; padding: 60px 24px; margin: 0 auto; width: 100%; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.hero h1 { color: #fff; font-size: clamp(30px, 5vw, 48px); line-height: 1.2; margin-bottom: 18px; }
.hero p { color: #fff; font-size: 18px; opacity: 0.94; max-width: 560px; }
.hero-actions { margin-top: 26px; display: flex; gap: 16px; flex-wrap: wrap; }

.page-hero {
  padding: 90px 0 56px;
  background: var(--navy);
  color: #fff;
  text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 10px; }
.page-hero p { color: #fff; opacity: 0.88; max-width: 640px; margin: 0 auto; }

/* Sections */
section { padding: 76px 0; }
section.tight { padding: 50px 0; }
.section-head { max-width: 660px; margin: 0 auto 44px; text-align: center; }
.section-head .eyebrow { display: inline-block; }
.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy); color: #fff; }
.bg-navy h2, .bg-navy h3 { color: #fff; }
.bg-navy p { color: rgba(255,255,255,0.85); }

/* Grids */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

/* Cards */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,59,92,0.14); }
.card-img {
  height: 210px;
  background: var(--navy);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  text-align: center;
  padding: 12px;
}
.card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 10px;
  border-radius: 3px;
}
.card-tag.enquiry { background: var(--navy); color: #fff; }
.card-body { padding: 22px; }
.card-body h3 { font-size: 19px; margin-bottom: 6px; }
.card-meta { font-size: 13px; color: var(--grey); margin-bottom: 12px; }
.card-body p { font-size: 15px; color: var(--grey); }
.card-foot {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

/* Placeholder image slots */
.photo-slot {
  background: repeating-linear-gradient(45deg, #eef1f3, #eef1f3 10px, #e4e9ec 10px, #e4e9ec 20px);
  border: 2px dashed #b9c3ca;
  border-radius: 8px;
  color: #5c6570;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  min-height: 140px;
}
.hero-slot {
  min-height: 320px;
  border-radius: 0;
  border-width: 0 0 4px 0;
  border-style: solid;
  border-color: var(--gold);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 700px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* Real photo gallery */
.hero-photo {
  width: 100%;
  min-height: 320px;
  max-height: 520px;
  object-fit: cover;
  border-radius: 0;
  border-bottom: 4px solid var(--gold);
  display: block;
}
.gallery-photo {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.gallery-photo-caption {
  font-size: 12px;
  color: #5c6570;
  text-align: center;
  margin-top: 4px;
  font-weight: 600;
}
.gallery-item { display: flex; flex-direction: column; }

/* Stats */
.stats { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 32px; text-align: center; }
.stat-num { font-size: 38px; font-weight: 700; color: var(--gold); }
.stat-label { font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--grey); }
.bg-navy .stat-label { color: rgba(255,255,255,0.7); }

/* Feature list */
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li { display: flex; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.feature-list li:last-child { border-bottom: none; }
.feature-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* CTA band */
.cta-band { background: var(--navy); color: #fff; text-align: center; padding: 60px 24px; border-radius: var(--radius); }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.85); }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 14px; }

/* Amenities grid */
.amenities { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; list-style: none; padding: 0; font-size: 14px; }
.amenities li { display: flex; align-items: center; gap: 8px; }
.amenities li::before { content: "✓"; color: var(--gold); font-weight: 700; }
@media (max-width: 640px) { .amenities { grid-template-columns: 1fr 1fr; } }

/* Quick facts */
.quickfacts { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0; }
.quickfact-pill {
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 20px;
}

/* Forms */
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 6px; color: var(--grey); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: inherit;
  font-size: 15px;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 13px; color: var(--grey); margin-top: -6px; }

/* Breadcrumb */
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 18px; }
.breadcrumb a { color: var(--gold); }

/* Other properties links */
.other-props { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.other-props a {
  display: block;
  padding: 16px;
  background: var(--cream);
  border-radius: 8px;
  border: 1px solid var(--line);
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
}
.other-props a:hover { background: #fff; border-color: var(--gold); }
.other-props a span { display: block; font-weight: 400; font-size: 12.5px; color: var(--grey); margin-top: 4px; }
@media (max-width: 780px) { .other-props { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .other-props { grid-template-columns: 1fr; } }

/* Footer */
footer.site-footer p { color: var(--white); }
footer.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.75); padding: 52px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.footer-grid h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; font-size: 14px; }
.footer-grid a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; } }

/* Notice box */
.notice-box {
  background: #fff8e6;
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 14px;
  color: var(--navy);
  margin: 20px 0;
}
