:root {
  --yellow: #facc15;
  --yellow-dark: #eab308;
  --black: #0a0a0a;
  --gray-900: #171717;
  --gray-700: #404040;
  --gray-500: #737373;
  --gray-300: #d4d4d4;
  --gray-100: #f5f5f5;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--yellow);
  color: var(--black);
  padding: 10px 16px;
  font-weight: 700;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.5;
}

.breadcrumbs {
  padding: 20px 24px 0;
  font-size: 14px;
  color: var(--gray-500);
  display: flex;
  gap: 8px;
  align-items: center;
}

.breadcrumbs a {
  color: var(--gray-700);
  font-weight: 500;
}

.breadcrumbs a:hover {
  color: var(--black);
}

.hero-area {
  padding: 60px 0 80px;
}

.hero-area .hero-inner {
  grid-template-columns: 1fr;
  text-align: center;
}

.hero-area .hero-content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.hero-area .hero-actions {
  justify-content: center;
}

.area-info {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray-700);
}

.area-info a {
  color: var(--black);
  font-weight: 700;
}

/* Blog */
.blog-post {
  padding: 40px 0 60px;
}

.blog-header {
  max-width: 780px;
  text-align: center;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 40px;
}

.blog-meta {
  display: inline-block;
  color: var(--gray-500);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-header h1 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(30px, 4.5vw, 46px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.blog-lead {
  font-size: 18px;
  color: var(--gray-700);
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto;
}

.blog-content {
  max-width: 740px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--gray-900);
}

.blog-content h2 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 40px 0 16px;
}

.blog-content p {
  margin-bottom: 18px;
}

.blog-content ul,
.blog-content ol {
  margin: 0 0 22px 22px;
  padding-left: 0;
}

.blog-content li {
  margin-bottom: 10px;
}

.blog-content a {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}

.blog-content a:hover {
  color: var(--yellow-dark);
}

.blog-content strong {
  font-weight: 700;
  color: var(--black);
}

.blog-note {
  background: #fef9c3;
  border-left: 4px solid var(--yellow);
  padding: 14px 18px;
  border-radius: 8px;
  margin: 24px 0;
  font-size: 16px;
}

.blog-content .faq-item {
  margin-top: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.phone-icon {
  font-size: 1.1em;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  z-index: 100;
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--black);
}

.logo-text {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.logo-mark {
  height: 36px;
  width: auto;
  display: block;
}

.footer .logo-mark {
  filter: invert(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--black);
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.header-cta:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
}

/* Hero */
.hero {
  background: radial-gradient(ellipse at top right, #1a1a1a 0%, #0a0a0a 60%), #0a0a0a;
  color: var(--white);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Mesh gradient blobs */
.hero-blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  will-change: transform;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #dc2626 0%, transparent 70%);
  top: -200px;
  right: -100px;
  opacity: 0.3;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #991b1b 0%, transparent 70%);
  bottom: -150px;
  left: -100px;
  opacity: 0.22;
}

.blob-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #ef4444 0%, transparent 70%);
  top: 30%;
  left: 40%;
  opacity: 0.12;
}

.pin-ring {
  opacity: 0.5;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  z-index: 1;
}

.hero-content {
  text-align: left;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-badge {
  display: inline-block;
  background: rgba(250, 204, 21, 0.15);
  color: var(--yellow);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(250, 204, 21, 0.3);
}

.hero h1 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.035em;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--gray-300);
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--yellow-dark);
}

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

.btn-secondary:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.btn-large {
  padding: 18px 36px;
  font-size: 17px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
}

.hero-stats > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stats strong {
  font-size: 28px;
  color: var(--yellow);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-stats span {
  font-size: 13px;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

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

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

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.section-sub {
  text-align: center;
  color: var(--gray-500);
  font-size: 18px;
  margin-bottom: 56px;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Cards */
.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--yellow);
}

.card-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 700;
}

.card p {
  color: var(--gray-500);
  font-size: 15px;
}

/* Area Cards */
.area-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.2s;
}

.area-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
}

.golf-flag {
  width: 28px;
  height: 36px;
  color: var(--gray-700);
  display: block;
  margin: 0 auto 12px;
  transition: transform 0.25s ease;
}

.area-card:hover .golf-flag {
  transform: translateY(-2px) rotate(-4deg);
}

.area-card h3 {
  font-size: 22px;
  margin-bottom: 0;
  color: var(--black);
}

.area-card p {
  color: var(--gray-500);
  font-size: 14px;
}

/* Features */
.feature {
  text-align: center;
  padding: 24px;
}

.feature-icon {
  width: 72px;
  height: 72px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
}

.feature h3 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 700;
}

.feature p {
  color: var(--gray-500);
  font-size: 15px;
}

/* Showcase */
.showcase-section {
  padding: 80px 0;
  background: var(--white);
}

.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.showcase:last-child {
  margin-bottom: 0;
}

.showcase-reverse .showcase-image {
  order: 2;
}

.showcase-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.showcase-content h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin: 16px 0;
  letter-spacing: -0.02em;
}

.showcase-content p {
  font-size: 17px;
  color: var(--gray-500);
  margin-bottom: 28px;
}

.showcase-content .hero-badge {
  background: var(--black);
  color: var(--yellow);
  border: 1px solid var(--black);
}

/* FAQ */
.faq-section {
  background: var(--white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--gray-100);
  border-radius: 14px;
  padding: 20px 24px;
  transition: background 0.2s ease;
}

.faq-item[open] {
  background: var(--white);
  border: 1px solid var(--gray-100);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.faq-item summary {
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--gray-900);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
  color: var(--gray-500);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin-top: 14px;
  color: var(--gray-700);
  line-height: 1.65;
  font-size: 15px;
}

.faq-item a {
  color: var(--black);
  font-weight: 700;
  text-decoration: underline;
}

/* CTA Section */
.cta-section {
  background: var(--yellow);
  padding: 80px 0;
  text-align: center;
}

.cta-inner h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--black);
}

.cta-inner p {
  font-size: 18px;
  color: var(--gray-700);
  margin-bottom: 32px;
}

.cta-section .btn-primary {
  background: var(--black);
  color: var(--yellow);
}

.cta-section .btn-primary:hover {
  background: var(--gray-900);
}

/* Footer */
.footer {
  background: var(--black);
  color: var(--gray-300);
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
}

.footer .logo {
  color: var(--white);
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 14px;
  color: var(--gray-500);
}

.footer h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 700;
}

.footer p {
  font-size: 14px;
  margin-bottom: 8px;
}

.footer a {
  color: var(--yellow);
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid var(--gray-900);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--gray-500);
}

/* Floating Call Button (Mobile) */
.floating-call {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--yellow);
  color: var(--black);
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 700;
  display: none;
  align-items: center;
  gap: 8px;
  z-index: 99;
}

/* Tablet */
@media (max-width: 900px) {
  .container {
    padding: 0 20px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content {
    text-align: center;
  }

  .hero-actions,
  .hero-stats {
    justify-content: center;
  }

  .showcase,
  .showcase-reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .showcase-reverse .showcase-image {
    order: 0;
  }

  .showcase-content {
    text-align: center;
  }

  .showcase-content .btn {
    margin: 0 auto;
  }

  .hero-image {
    max-width: 520px;
    margin: 0 auto;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }

  .header-inner {
    padding: 14px 20px;
  }

  .logo-text {
    font-size: 17px;
  }

  .logo-mark {
    height: 28px;
  }

  .header-cta {
    padding: 8px 14px;
    font-size: 13px;
    gap: 6px;
  }

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

  .hero-inner {
    gap: 32px;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: -0.03em;
  }

  .hero-sub {
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-bottom: 0;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-image {
    max-width: 100%;
  }

  .hero-image img {
    border-radius: 14px;
  }

  .blob {
    filter: blur(50px);
    opacity: 0.15 !important;
  }

  .section,
  .showcase-section {
    padding: 48px 0;
  }

  .section-title {
    font-size: 26px;
  }

  .section-sub {
    font-size: 15px;
    margin-bottom: 32px;
  }

  .showcase {
    margin-bottom: 48px;
    gap: 28px;
  }

  .showcase-content h2 {
    font-size: 26px;
    margin: 12px 0;
  }

  .showcase-content p {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .grid {
    gap: 12px;
  }

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

  .area-card {
    padding: 20px 12px;
  }

  .area-card h3 {
    font-size: 17px;
  }

  .golf-flag {
    width: 24px;
    height: 30px;
    margin-bottom: 10px;
  }

  .cta-section {
    padding: 48px 0;
  }

  .cta-inner h2 {
    font-size: 26px;
  }

  .cta-inner p {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .btn-large {
    padding: 16px 24px;
    font-size: 16px;
    width: 100%;
    justify-content: center;
  }

  .footer {
    padding: 40px 0 100px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 0;
    text-align: center;
  }

  .footer .logo {
    justify-content: center;
  }

  .footer h4 {
    margin-bottom: 10px;
  }

  .floating-call {
    display: inline-flex;
    bottom: 16px;
    right: 16px;
    padding: 13px 20px;
    font-size: 14px;
  }
}

/* Small phones */
@media (max-width: 380px) {
  .hero h1 {
    font-size: 32px;
  }

  .header-cta {
    font-size: 12px;
    padding: 7px 12px;
  }
}
