/* Unlock Capital Partners inspired aesthetic */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --primary: #00a884;
  --primary-hover: #008f6a;
  --bg: #ffffff;
  --panel: #f8fafb;
  --text: #333333;
  --muted: #666666;
  --light-muted: #888888;
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --max: 1100px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-hover);
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header / Navigation */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  color: var(--primary);
  letter-spacing: -0.3px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--muted);
}

.nav a {
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.2s ease;
  color: var(--muted);
}

.nav a:hover {
  background: var(--panel);
  color: var(--text);
}

.nav-cta {
  background: var(--primary) !important;
  color: #fff !important;
  border-radius: 8px;
}

.nav-cta:hover {
  background: var(--primary-hover) !important;
  color: #fff !important;
}

/* Hero Section */
.hero {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, var(--panel) 0%, var(--bg) 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: start;
}

.micro {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

h1 {
  margin: 0 0 20px;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: var(--text);
}

.lead {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  max-width: 60ch;
}

.bullets {
  margin: 20px 0 0;
  padding-left: 0;
  list-style: none;
  color: var(--muted);
}

.bullets li {
  margin: 12px 0;
  padding-left: 28px;
  position: relative;
}

.bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.bullets.compact li {
  margin: 8px 0;
}

.actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  border: 2px solid var(--border);
  background: #fff;
  color: var(--text);
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: #fff;
}

.note {
  margin-top: 24px;
  padding: 16px 20px;
  border-radius: 10px;
  border-left: 4px solid var(--primary);
  background: var(--panel);
  color: var(--muted);
  font-size: 14px;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section.alt {
  background: var(--panel);
}

h2 {
  margin: 0 0 16px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text);
}

.sub {
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 17px;
  max-width: 70ch;
  line-height: 1.7;
}

/* Cards */
.card {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.card.wide {
  box-shadow: var(--shadow);
}

.card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

.card-body {
  color: var(--muted);
  line-height: 1.7;
}

.kv {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.kv:last-child {
  border-bottom: 0;
}

.k {
  color: var(--light-muted);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.v {
  color: var(--text);
  font-weight: 500;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}

.small {
  color: var(--muted);
  font-size: 14px;
}

.spacer {
  height: 16px;
}

/* Table */
.table-wrap {
  overflow: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.table th, .table td {
  text-align: left;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.table th {
  background: var(--panel);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.table td {
  color: var(--muted);
}

.table tr:last-child td {
  border-bottom: 0;
}

.table tr:hover td {
  background: var(--panel);
}

/* Quotes / Testimonials */
.quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.quote {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  color: var(--muted);
  font-style: italic;
  position: relative;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.quote::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 16px;
  font-size: 48px;
  color: var(--primary);
  opacity: 0.3;
  font-family: Georgia, serif;
}

.quote:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.link {
  display: block;
}

.link:hover {
  transform: translateY(-4px);
}

/* Form */
.form {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--muted);
  font-weight: 500;
  font-size: 14px;
}

input, textarea {
  width: 100%;
  border-radius: 8px;
  border: 2px solid var(--border);
  background: #fff;
  padding: 14px 16px;
  color: var(--text);
  outline: none;
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 168, 132, 0.15);
}

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

/* Footer */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  background: var(--panel);
  color: var(--muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  font-weight: 500;
}

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

/* Footer Broker Info */
.footer-broker {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.broker-info {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 8px;
}

.property-management-link {
  font-size: 14px;
  color: var(--muted);
}

.property-management-link a {
  color: var(--primary);
  font-weight: 500;
}

/* Property Management Section (below Book a call) */
.property-management-section {
  padding: 60px 0;
  background: var(--panel);
}

.pm-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.pm-dual-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.pm-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.pm-image {
  max-width: 600px;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.pm-image img {
  width: 100%;
  height: auto;
  display: block;
}

.pm-text {
  font-size: 20px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.6;
  max-width: 700px;
}

.pm-text a {
  color: var(--primary);
  font-weight: 600;
}

.pm-text a:hover {
  color: var(--primary-hover);
}

@media (max-width: 740px) {
  .pm-dual-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Testimonial Section */
.testimonial-section {
  margin-top: 40px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.testimonial-intro {
  font-size: 16px;
  color: var(--text);
  margin: 0 0 20px;
  font-weight: 500;
}

.testimonial-quote {
  font-style: italic;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  margin: 0 0 20px;
  padding-left: 24px;
  border-left: 4px solid var(--primary);
}

.testimonial-attribution {
  font-weight: 600;
  color: var(--text);
  margin: 0;
  text-align: right;
}

/* Shorts Section - Side by Side Layout */
.shorts-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 48px;
}

.shorts-text {
  display: flex;
  align-items: center;
}

.shorts-headline {
  font-size: 28px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  line-height: 1.4;
}

.shorts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

/* Embedded Website Section */
.embed-section {
  padding: 60px 0;
  background: var(--panel);
  text-align: center;
}

.embed-section h2 {
  text-align: center;
}

.embed-section .sub {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.embed-wrapper {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  background: #fff;
  max-width: 1000px;
  margin: 0 auto;
}

.embed-wrapper iframe {
  display: block;
  width: 100%;
  height: 600px;
  border: 0;
}

/* Responsive */
@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quotes {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .table {
    min-width: 0;
  }

  .media-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 740px) {
  .nav {
    display: none;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  .section {
    padding: 50px 0;
  }

  .hero {
    padding: 50px 0 40px;
  }

  .embed-wrapper iframe {
    height: 400px;
  }

  .media-grid {
    grid-template-columns: 1fr;
  }

  .shorts-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .shorts-headline {
    text-align: center;
  }

  .shorts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 400px;
    margin: 0 auto;
  }

  .articles-grid {
    grid-template-columns: 1fr;
  }
}

/* Media Section - YouTube Thumbnails */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.media-card {
  display: block;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  text-decoration: none;
}

.media-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.media-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.media-thumb.shorts {
  aspect-ratio: 9 / 16;
  max-height: 280px;
}

.media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.media-card:hover .media-thumb img {
  transform: scale(1.05);
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  transition: all 0.3s ease;
}

.media-card:hover .play-icon {
  background: var(--primary);
  transform: translate(-50%, -50%) scale(1.1);
}

.media-info {
  padding: 16px;
}

.media-title {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

/* Articles Section - Image Thumbnails */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.article-card {
  display: block;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  text-decoration: none;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.article-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--panel);
}

.article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.3s ease;
}

.article-card:hover .article-thumb img {
  transform: scale(1.03);
}

.article-info {
  padding: 16px;
}

.article-title {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  font-size: 15px;
  line-height: 1.4;
}

/* Video Header Section */
.video-header {
  background: #000;
  width: 100%;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  max-height: 70vh;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Great Wealth Transfer Feature Section */
.gwt-feature {
  background: var(--panel);
  padding: 60px 0;
}

.gwt-content {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: 50px;
  align-items: center;
}

.gwt-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  transition: all 0.3s ease;
}

.gwt-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.gwt-image a {
  display: block;
}

.gwt-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.gwt-image:hover img {
  transform: scale(1.02);
}

.gwt-text h2 {
  margin-bottom: 20px;
}

.gwt-text .lead {
  margin-bottom: 16px;
}

.gwt-text p {
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* Overview with Headshot */
.overview-with-headshot {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.headshot-container {
  display: flex;
  justify-content: center;
}

.headshot {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 4px solid var(--primary);
  box-shadow: var(--shadow-hover);
  transition: all 0.3s ease;
}

.headshot:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 168, 132, 0.2);
}

.overview-card {
  flex: 1;
}

/* Responsive adjustments for new sections */
@media (max-width: 980px) {
  .gwt-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .gwt-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .gwt-text {
    text-align: center;
  }

  .gwt-text .btn {
    margin: 0 auto;
  }
}

@media (max-width: 740px) {
  .video-wrapper {
    padding-top: 56.25%;
  }

  .gwt-feature {
    padding: 40px 0;
  }

  .headshot {
    width: 140px;
    height: 140px;
  }
}
