/* ==========================================================================
   Southbanks Mississauga - Light Luxury Coastal Design System
   Matches https://southbanktowns.ca/ with Video Hero & Light Sections
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

:root {
  --charcoal: #1E2A2E;
  --charcoal-light: #243238;
  --charcoal-lighter: #2C3E44;
  --coastal: #3A8A9A;
  --coastal-light: #4DA8BA;
  --coastal-dark: #2E6E7C;
  --sand: #C4A87C;
  --sand-light: #D4BC94;
  --sand-dark: #A88D62;
  --cream: #F7F3EE;
  --cream-dark: #EDE7DF;
  --white: #ffffff;
  --text-dark: #1E2A2E;
  --text-medium: #4A5A60;
  --text-light: #6C7D84;
  --text-lighter: #8E9FA5;
  --line: rgba(0, 0, 0, 0.08);
  --line-dark: rgba(255, 255, 255, 0.12);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.09);
  --radius: 4px;
}

/* -------------------------------------------------------------
 * Base & Reset
 * ----------------------------------------------------------- */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body.southbanks-body,
body.southbanks-active,
body.page-template-page-landing,
body.page-template-page-thank-you {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: var(--white);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.southbanks-body *,
.southbanks-body *::before,
.southbanks-body *::after {
  box-sizing: border-box;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 30px;
}

/* -------------------------------------------------------------
 * Typography & Section Headers
 * ----------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--charcoal);
  margin: 0 0 0.5em;
  line-height: 1.25;
  font-weight: 500;
}

p {
  margin: 0 0 1.2em;
}

a {
  color: var(--coastal);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--coastal-dark);
}

.section {
  padding: 100px 0;
  position: relative;
}

.section--cream {
  background-color: var(--cream);
}

.section--white {
  background-color: var(--white);
}

.section--dark {
  background-color: var(--charcoal);
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coastal);
  font-weight: 600;
  margin-bottom: 12px;
}

.section--dark .section-label {
  color: var(--sand);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.4rem);
  color: var(--charcoal);
  margin-bottom: 16px;
}

.section--dark .section-title {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-medium);
  line-height: 1.8;
  font-weight: 300;
}

.section--dark .section-subtitle {
  color: rgba(255, 255, 255, 0.75);
}

/* -------------------------------------------------------------
 * Buttons
 * ----------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 36px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--coastal {
  background: var(--coastal);
  color: var(--white);
  border-color: var(--coastal);
}

.btn--coastal:hover {
  background: var(--coastal-dark);
  color: var(--white);
  border-color: var(--coastal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(58, 138, 154, 0.35);
}

.btn--sand {
  background: var(--sand);
  color: var(--white);
  border-color: var(--sand);
}

.btn--sand:hover {
  background: var(--sand-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 168, 124, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.btn--outline-dark:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
}

/* -------------------------------------------------------------
 * Sticky Header Navigation
 * ----------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: linear-gradient(180deg, rgba(12, 22, 26, 0.7) 0%, rgba(12, 22, 26, 0.25) 80%, transparent 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.header-logo img {
  height: 32px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  transition: height var(--transition);
}

.header-logo__dark {
  display: none;
}

.header-logo__light {
  display: block;
}

.site-header.scrolled .header-logo__dark {
  display: block;
}

.site-header.scrolled .header-logo__light {
  display: none;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.2vw, 20px);
  flex-wrap: nowrap;
}

.header-nav > a {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.94);
  transition: color var(--transition);
  font-weight: 600;
  white-space: nowrap;
}

.site-header.scrolled .header-nav > a {
  color: var(--text-dark);
}

.header-nav > a:hover {
  color: var(--sand-light);
}

.site-header.scrolled .header-nav > a:hover {
  color: var(--coastal);
}

.header-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  font-weight: 600;
  color: var(--sand-light) !important;
  white-space: nowrap;
}

.site-header.scrolled .header-phone-link {
  color: var(--coastal) !important;
}

.header-phone-link svg {
  stroke: currentColor;
}

.btn-register-nav {
  background: var(--coastal) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  border-radius: var(--radius) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  transition: all var(--transition) !important;
  white-space: nowrap !important;
}

.btn-register-nav:hover {
  background: var(--coastal-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(58, 138, 154, 0.35);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: var(--transition);
}

.site-header.scrolled .mobile-menu-toggle span {
  background: var(--charcoal);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 24px 30px 30px;
  border-top: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 12px 0;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  border-bottom: 1px solid var(--line);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  color: var(--coastal);
}

/* -------------------------------------------------------------
 * HERO SECTION WITH VIDEO BACKGROUND
 * ----------------------------------------------------------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--charcoal);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__video--mobile {
  display: none;
}

.hero__bg--fallback {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 34, 40, 0.45) 0%, rgba(20, 34, 40, 0.65) 60%, rgba(20, 34, 40, 0.85) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
  max-width: 860px;
  margin: 0 auto;
}

h1.hero__label,
.hero__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 1.15vw, 0.88rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand-light);
  background: rgba(12, 22, 26, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 28px;
  border: 1px solid rgba(196, 168, 124, 0.45);
  border-radius: 50px;
  margin: 0 auto 22px;
  font-weight: 600;
  line-height: 1.4;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(4.2rem, 11vw, 7.8rem); /* Significantly increased as requested! */
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.02em;
  line-height: 1.02;
  margin-bottom: 20px;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.7);
  text-transform: none;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-bottom: 36px;
}

.hero__ctas {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll-indicator span {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--sand), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* -------------------------------------------------------------
 * PROJECT SNAPSHOT BAR (LIGHT / CREAM)
 * ----------------------------------------------------------- */
.section--snapshot {
  background: var(--cream);
  padding: 50px 0;
  border-bottom: 1px solid var(--line);
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(10px, 1.8vw, 24px);
  text-align: center;
}

.snapshot-item {
  padding: 8px 4px;
  min-width: 0;
}

.snapshot-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.3vw, 2.3rem);
  color: var(--charcoal);
  font-weight: 600;
  margin-bottom: 4px;
  white-space: nowrap; /* Prevents 900- 1,400 from wrapping */
  line-height: 1.15;
}

.snapshot-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-medium);
  font-weight: 500;
}

/* -------------------------------------------------------------
 * SECTION: ABOUT / OVERVIEW (LIGHT / WHITE)
 * ----------------------------------------------------------- */
.section--about {
  background: var(--white);
  padding: 120px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.about-text .section-label {
  text-align: left;
}

.about-text .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.about-lead {
  font-size: 1.12rem;
  color: var(--text-dark);
  line-height: 1.85;
  margin-bottom: 18px;
  font-weight: 400;
}

.about-text p {
  color: var(--text-medium);
  line-height: 1.85;
  font-weight: 300;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

.about-image:hover img {
  transform: scale(1.03);
}

/* -------------------------------------------------------------
 * SECTION: WHY SOUTH BANKS / HIGHLIGHTS (LIGHT / CREAM)
 * ----------------------------------------------------------- */
.section--highlights {
  background: var(--cream);
  padding: 110px 0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.highlight-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 40px 32px;
  border-radius: var(--radius);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--coastal);
}

.highlight-icon {
  width: 44px;
  height: 44px;
  color: var(--coastal);
  margin-bottom: 22px;
}

.highlight-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}

.highlight-card h4 {
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

.highlight-card p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.7;
  font-weight: 300;
  margin: 0;
}

/* -------------------------------------------------------------
 * SECTION: NEIGHBOURHOOD (LIGHT / WHITE)
 * ----------------------------------------------------------- */
.section--neighbourhood {
  background: var(--white);
  padding: 110px 0;
}

.neighbourhood-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.neighbourhood-card {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 40px 32px;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.neighbourhood-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--coastal);
  background: var(--white);
}

.neighbourhood-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(58, 138, 154, 0.08);
  border: 1px solid rgba(58, 138, 154, 0.2);
  color: var(--coastal);
  border-radius: 8px;
  margin-bottom: 22px;
  padding: 12px;
  transition: all var(--transition);
}

.neighbourhood-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  display: block;
}

.neighbourhood-card:hover .neighbourhood-icon {
  background: var(--coastal);
  border-color: var(--coastal);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(58, 138, 154, 0.25);
}

.neighbourhood-card h4 {
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.neighbourhood-card p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.7;
  margin: 0;
  font-weight: 300;
}

/* -------------------------------------------------------------
 * SECTION: GALLERY (LIGHT / CREAM)
 * ----------------------------------------------------------- */
.section--gallery {
  background: var(--cream);
  padding: 110px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 270px;
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
  background: #e2e8f0;
}

.gallery-item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 42, 46, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__overlay span {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid var(--sand);
  padding: 10px 24px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  border-radius: var(--radius);
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10, 20, 26, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 16px;
  transition: color var(--transition);
  z-index: 2;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  color: var(--sand);
}

.lightbox-close {
  top: 24px;
  right: 32px;
  font-size: 2.5rem;
  line-height: 1;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
}

/* -------------------------------------------------------------
 * SECTION: WHY INVEST (LIGHT / WHITE)
 * ----------------------------------------------------------- */
.section--investment {
  background: var(--white);
  padding: 110px 0;
}

.investment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.investment-card {
  background: var(--cream);
  padding: 44px 32px;
  border-left: 4px solid var(--coastal);
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: all var(--transition);
}

.investment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: var(--white);
  border-color: var(--sand);
}

.investment-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--coastal);
  margin-bottom: 14px;
  font-weight: 600;
}

.investment-card h4 {
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.investment-card p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.75;
  margin: 0;
  font-weight: 300;
}

/* -------------------------------------------------------------
 * SECTION: FLOOR PLANS & SUITES (LIGHT / CREAM)
 * ----------------------------------------------------------- */
.section--floorplans {
  background: var(--cream);
  padding: 110px 0;
}

.floorplans-inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.floorplans-text {
  font-size: 1.1rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 36px;
  font-weight: 300;
}

.suite-types {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 40px;
}

.suite-type {
  background: var(--white);
  padding: 14px 28px;
  border: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.suite-type:hover {
  border-color: var(--coastal);
  color: var(--coastal);
  transform: translateY(-2px);
}

/* -------------------------------------------------------------
 * SECTION: PRICING & INCENTIVES (LIGHT / WHITE)
 * ----------------------------------------------------------- */
.section--pricing {
  background: var(--white);
  padding: 110px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  max-width: 960px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 48px 40px;
  border-radius: var(--radius);
  position: relative;
}

.pricing-card--featured {
  border: 2px solid var(--coastal);
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  right: 30px;
  background: var(--coastal);
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 18px;
  font-weight: 600;
  border-radius: var(--radius);
}

.pricing-card h3 {
  font-size: 1.6rem;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.pricing-from {
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.pricing-amount {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--coastal);
  margin-bottom: 28px;
  font-weight: 600;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--text-medium);
  font-weight: 400;
  padding-left: 26px;
  position: relative;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border: 2px solid var(--coastal);
  transform: translateY(-50%) rotate(45deg);
}

/* -------------------------------------------------------------
 * SECTION: DEVELOPERS / INDUSTRY LEADERS (LIGHT / CREAM)
 * ----------------------------------------------------------- */
.section--developers {
  background: var(--cream);
  padding: 110px 0;
}

.developers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.developer-card {
  background: var(--white);
  padding: 50px 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.developer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--coastal);
}

.developer-logo {
  height: 48px;
  width: auto;
  margin: 0 auto 24px;
  display: block;
}

.developer-card h4 {
  font-size: 1.4rem;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.developer-card p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 20px;
}

/* -------------------------------------------------------------
 * SECTION: EXPLORE LAKEVIEW VILLAGE (LIGHT / WHITE)
 * ----------------------------------------------------------- */
.section--community {
  background: var(--white);
  padding: 110px 0;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.community-card {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.community-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--coastal);
}

.community-card--current {
  border-color: var(--coastal);
}

.community-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.community-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.community-card:hover .community-card__image img {
  transform: scale(1.06);
}

.community-card__here {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--coastal);
  color: var(--white);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius);
}

.community-card__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.community-card h4 {
  font-size: 1.15rem;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.community-card__developer {
  font-size: 0.8rem;
  color: var(--coastal);
  margin-bottom: 10px;
  font-weight: 600;
}

.community-card__type {
  font-size: 0.88rem;
  color: var(--text-medium);
  font-weight: 300;
  margin-bottom: 16px;
  flex-grow: 1;
}

.community-card__status {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coastal);
  border: 1px solid var(--coastal);
  padding: 6px 14px;
  border-radius: var(--radius);
  font-weight: 600;
  align-self: flex-start;
}

/* -------------------------------------------------------------
 * SECTION: SCHEDULE CONSULTATION / BOOKING (LIGHT / CREAM)
 * ----------------------------------------------------------- */
.section--calendly {
  background: var(--cream);
  padding: 100px 0;
}

.calendly-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.calendly-cta-side .section-label {
  text-align: left;
}

.calendly-cta-side .section-title {
  text-align: left;
}

.calendly-cta-side p {
  color: var(--text-medium);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.direct-call-box {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.direct-call-box h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.direct-call-box p {
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.phone-display-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--coastal);
  padding: 12px 24px;
  background: rgba(58, 138, 154, 0.1);
  border-radius: var(--radius);
  border: 1px solid rgba(58, 138, 154, 0.25);
  transition: all var(--transition);
}

.phone-display-btn:hover {
  background: var(--coastal);
  color: var(--white);
  transform: translateY(-2px);
}

/* -------------------------------------------------------------
 * SECTION: REGISTRATION & CF7 (LIGHT / WHITE)
 * ----------------------------------------------------------- */
.section--register {
  background: var(--white);
  padding: 120px 0;
}

.register-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.register-perks {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  border-top: 1px solid var(--line);
}

.register-perks li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text-medium);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.register-perks li svg {
  color: var(--coastal);
  flex-shrink: 0;
}

.register-form-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px 38px;
  box-shadow: var(--shadow-md);
}

.register-form-card h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.register-form-card p.subtitle {
  color: var(--text-medium);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

/* Form inputs & CF7 Styling */
.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field select,
.form-field textarea,
.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap select,
.wpcf7-form-control-wrap textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  padding: 13px 16px;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.wpcf7-form-control-wrap input:focus,
.wpcf7-form-control-wrap select:focus {
  border-color: var(--coastal);
  box-shadow: 0 0 0 3px rgba(58, 138, 154, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0;
  font-size: 0.85rem;
  color: var(--text-medium);
}

.form-check input {
  margin-top: 3px;
  accent-color: var(--coastal);
}

.form-submit-btn,
.wpcf7-submit {
  width: 100%;
  padding: 16px;
  background: var(--coastal) !important;
  color: var(--white) !important;
  font-family: var(--font-body) !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  border: none !important;
  border-radius: var(--radius) !important;
  cursor: pointer !important;
  transition: all var(--transition) !important;
}

.form-submit-btn:hover,
.wpcf7-submit:hover {
  background: var(--coastal-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(58, 138, 154, 0.35);
}

.wpcf7-response-output {
  margin: 16px 0 0 !important;
  padding: 12px 16px !important;
  border-radius: var(--radius) !important;
  font-size: 0.9rem !important;
}

/* -------------------------------------------------------------
 * SECTION: FAQS ACCORDION (LIGHT / CREAM)
 * ----------------------------------------------------------- */
.section--faq {
  background: var(--cream);
  padding: 110px 0;
}

.faq-list {
  max-width: 840px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--charcoal);
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--coastal);
}

.faq-question svg {
  flex-shrink: 0;
  color: var(--coastal);
  transition: transform var(--transition);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 28px;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 28px 24px;
}

.faq-answer p {
  font-size: 0.96rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin: 0;
  font-weight: 300;
}

/* -------------------------------------------------------------
 * SITE FOOTER (CHARCOAL / DARK ACCENT)
 * ----------------------------------------------------------- */
.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 40px;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.footer-logo {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-logo-divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.2rem;
}

.footer-brand p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  max-width: 480px;
}

.footer-links h4 {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--sand-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-disclaimer {
  max-width: 780px;
  line-height: 1.6;
}

.footer-copyright {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.footer-credit a {
  color: var(--sand);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}

.footer-credit a:hover {
  color: var(--sand-light);
  text-decoration: underline;
}

/* -------------------------------------------------------------
 * Floating Mobile Actions
 * ----------------------------------------------------------- */
.floating-call-btn {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  background: var(--coastal);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(58, 138, 154, 0.45);
  font-size: 0.85rem;
  font-weight: 700;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.floating-call-btn:hover {
  background: var(--coastal-dark);
  color: var(--white);
}

/* -------------------------------------------------------------
 * Responsive Media Queries
 * ----------------------------------------------------------- */
@media (max-width: 1140px) {
  .header-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image {
    order: -1;
  }
  .snapshot-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .highlights-grid,
  .neighbourhood-grid,
  .investment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid,
  .developers-grid,
  .calendly-split,
  .register-grid {
    grid-template-columns: 1fr;
  }
  .community-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
    gap: 16px;
  }
  .gallery-item--large {
    grid-column: span 2;
    grid-row: span 1;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }
  .container {
    padding: 0 20px;
  }
  .hero {
    min-height: 620px;
  }
  .hero__title {
    font-size: clamp(2.6rem, 10vw, 3.8rem);
  }
  .hero__video--desktop {
    display: none;
  }
  .hero__video--mobile {
    display: block;
  }
  .hero-scroll-indicator {
    display: none;
  }
  .hero__ctas .btn {
    width: 100%;
  }
  .highlights-grid,
  .neighbourhood-grid,
  .investment-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .gallery-item--large {
    grid-column: span 1;
    grid-row: span 1;
  }
  .community-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .section--pricing {
    overflow-x: clip;
    padding: 70px 0;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    width: 100%;
    max-width: 100%;
  }
  .pricing-card {
    padding: 38px 24px 30px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .pricing-badge {
    right: 20px;
    top: -13px;
    font-size: 0.68rem;
    padding: 5px 14px;
    letter-spacing: 0.12em;
    max-width: calc(100% - 40px);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .pricing-amount {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
    margin-bottom: 20px;
  }
  .pricing-card h3 {
    font-size: clamp(1.3rem, 5vw, 1.5rem);
  }
  .pricing-features li {
    font-size: 0.92rem;
    padding-left: 24px;
    word-break: break-word;
  }
  .pricing-card .btn--full {
    white-space: normal;
    text-align: center;
    padding: 14px 20px;
    font-size: 0.8rem;
    line-height: 1.35;
  }
}

@media (max-width: 480px) {
  .snapshot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-card {
    padding: 32px 18px 24px;
  }
  .pricing-badge {
    right: 14px;
    top: -12px;
    font-size: 0.64rem;
    padding: 4px 10px;
  }
  .pricing-amount {
    font-size: 1.7rem;
    margin-bottom: 16px;
  }
  .pricing-card h3 {
    font-size: 1.22rem;
  }
  .pricing-features {
    margin-bottom: 24px;
  }
  .pricing-features li {
    font-size: 0.88rem;
    padding: 10px 0 10px 22px;
  }
}

/* ============================================================
 * THANK YOU PAGE STYLING
 * ========================================================== */
body.southbanks-thank-you-page {
  background: #FFFFFF;
  color: #0A1B27;
}

.southbanks-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(20px, 5vw, 60px);
  background: rgba(10, 27, 39, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.southbanks-mark {
  color: #ffffff;
  text-decoration: none;
  line-height: 1.1;
}
.southbanks-mark b {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #ffffff;
}
.southbanks-mark span {
  display: block;
  margin-top: 4px;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: #9FC3D4;
}

.sb-confirm {
  position: relative;
  background: #0A1B27;
  color: #ffffff;
  text-align: center;
  padding: clamp(140px, 19vh, 210px) clamp(20px, 5vw, 60px) clamp(80px, 12vh, 130px);
  overflow: hidden;
}
.sb-hero-bg-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  pointer-events: none;
}
.sb-confirm::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(120% 90% at 50% 34%, rgba(20, 54, 80, 0.35) 0%, rgba(10, 27, 39, 0.94) 75%);
  pointer-events: none;
}
.sb-confirm-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}

.sb-confirm-tick {
  width: 76px;
  height: 76px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: #C08A45;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 10px rgba(192, 138, 69, 0.2), 0 8px 24px rgba(0, 0, 0, 0.3);
}
.sb-confirm-tick svg {
  width: 38px;
  height: 38px;
  stroke: #ffffff;
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sb-confirm-tick svg path {
  stroke-dasharray: 36;
  stroke-dashoffset: 36;
  animation: sbDraw 0.6s 0.2s cubic-bezier(0.2, 0.7, 0.3, 1) forwards;
}

.sb-confirm h1.h1 {
  font-family: var(--font-heading, 'Instrument Serif', Georgia, serif);
  font-size: clamp(3rem, 7.5vw, 5.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin: 0 0 16px;
}
.sb-badge {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 99px;
  padding: 6px 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  margin: 0 0 24px;
}
.sb-confirm-lead {
  font-size: clamp(1.2rem, 2.8vw, 1.7rem);
  line-height: 1.4;
  color: #ffffff;
  margin: 0 0 16px;
  font-weight: 400;
}
.sb-confirm-note {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 580px;
  margin: 0 auto 34px;
}
.sb-confirm-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.sb-next {
  padding: clamp(70px, 9vw, 110px) 0;
  background: #ffffff;
}
.sb-steps-grid {
  margin-top: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(10, 27, 39, 0.12);
}
.sb-step-item {
  padding: clamp(30px, 3.5vw, 44px) clamp(20px, 2.5vw, 34px);
}
.sb-step-item + .sb-step-item {
  border-left: 1px solid rgba(10, 27, 39, 0.12);
}
.sb-step-item:first-child {
  padding-left: 0;
}
.sb-step-item:last-child {
  padding-right: 0;
}
.sb-step-n {
  font-family: var(--font-heading, 'Instrument Serif', Georgia, serif);
  font-size: 2.8rem;
  line-height: 1;
  color: #C08A45;
  margin: 0 0 12px;
}
.sb-step-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.35;
  color: #0A1B27;
  margin: 0 0 10px;
}
.sb-step-item p {
  font-size: 0.96rem;
  line-height: 1.65;
  color: #64748B;
  margin: 0;
}

.sb-recap {
  background: #F6F8FA;
  padding: clamp(70px, 9vw, 110px) 0;
}
.sb-recap-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.sb-recap-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  border-top: 1px solid rgba(10, 27, 39, 0.12);
}
.sb-recap-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(10, 27, 39, 0.12);
  font-size: 0.98rem;
}
.sb-recap-list b {
  font-weight: 600;
  color: #0A1B27;
}
.sb-recap-list span {
  font-family: var(--font-heading, 'Instrument Serif', Georgia, serif);
  font-size: 1.35rem;
  color: #C08A45;
  font-weight: 400;
}
.sb-ov-visual svg {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 12px 32px rgba(10, 27, 39, 0.12);
}

.sb-footer {
  background: #0A1B27;
  color: rgba(255, 255, 255, 0.75);
  padding: clamp(50px, 7vw, 80px) 0 40px;
}
.sb-footer-top {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.sb-footer-fine {
  margin-top: 28px;
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
}
.sb-footer-fine p + p {
  margin-top: 10px;
}
