
    :root {
      --bg: #050816;
      --bg-soft: #0b1020;
      --accent: #ffb347;
      --accent-soft: rgba(255, 179, 71, 0.12);
      --text: #f5f5f5;
      --muted: #a3a3b5;
      --card: #111827;
      --border: #1f2937;
      --danger: #f97373;
      --shadow-soft: 0 22px 45px rgba(0, 0, 0, 0.6);
      --radius-lg: 18px;
      --radius-xl: 28px;
      --radius-full: 999px;
      --max-width: 1120px;
      --transition-fast: 160ms ease-out;
      --transition-med: 220ms ease-out;
    }

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

    html, body {
      height: 100%;
      scroll-behavior: smooth;
    }

    body {
      font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: radial-gradient(circle at top left, #1f2937, #050816 55%);
      color: var(--text);
      -webkit-font-smoothing: antialiased;
    }

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

    img {
      max-width: 100%;
      display: block;
    }

    /* Layout container */

    .page-wrap {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

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

    /* Top navigation */

    .nav {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(14px);
      background: linear-gradient(
        to bottom,
        rgba(5, 8, 22, 0.92),
        rgba(5, 8, 22, 0.78),
        transparent
      );
      border-bottom: 1px solid rgba(31, 41, 55, 0.7);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 70px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 0.7rem;
    }

    .brand-logo {
      width: 36px;
      height: 36px;
      border-radius: 40%;
      background: radial-gradient(circle at 20% 20%, #fef3c7, #f97316 35%, #4ade80 80%);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.65);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 1.1rem;
      color: #1f2937;
    }

    .brand-text-main {
      font-weight: 700;
      letter-spacing: 0.04em;
      font-size: 1.1rem;
    }

    .brand-text-sub {
      font-size: 0.78rem;
      color: var(--muted);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      font-size: 0.9rem;
    }

    .nav-links a {
      position: relative;
      padding: 0.2rem 0;
      color: var(--muted);
      transition: color var(--transition-fast);
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -0.15rem;
      width: 0;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(to right, #f97316, #fde68a);
      transition: width var(--transition-fast);
    }

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

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-cta {
      padding: 0.4rem 0.9rem;
      border-radius: var(--radius-full);
      background: linear-gradient(135deg, #f59e0b, #f97316);
      color: #111827;
      font-size: 0.84rem;
      font-weight: 600;
      border: none;
      cursor: pointer;
      box-shadow: 0 10px 25px rgba(248, 171, 60, 0.35);
      transition: transform var(--transition-fast), box-shadow var(--transition-fast);
      white-space: nowrap;
    }

    .nav-cta:hover {
      transform: translateY(-1px);
      box-shadow: 0 14px 28px rgba(248, 171, 60, 0.42);
    }

    /* Mobile nav button */

    .nav-toggle {
      display: none;
      width: 34px;
      height: 34px;
      border-radius: 999px;
      border: 1px solid rgba(75, 85, 99, 0.9);
      background: rgba(15, 23, 42, 0.9);
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .nav-toggle span {
      width: 16px;
      height: 2px;
      background: var(--text);
      position: relative;
      display: block;
      border-radius: 999px;
    }

    .nav-toggle span::before,
    .nav-toggle span::after {
      content: "";
      position: absolute;
      left: 0;
      width: 16px;
      height: 2px;
      background: var(--text);
      border-radius: 999px;
      transition: transform 160ms ease-out, opacity 160ms ease-out, top 160ms ease-out;
    }

    .nav-toggle span::before {
      top: -5px;
    }

    .nav-toggle span::after {
      top: 5px;
    }

    .nav-toggle.open span {
      background: transparent;
    }

    .nav-toggle.open span::before {
      top: 0;
      transform: rotate(45deg);
    }

    .nav-toggle.open span::after {
      top: 0;
      transform: rotate(-45deg);
    }

    .nav-links-mobile {
      display: none;
      flex-direction: column;
      gap: 0.5rem;
      padding: 0.7rem 0 1.1rem;
    }

    .nav-links-mobile a {
      font-size: 0.95rem;
      color: var(--muted);
    }

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

    /* Hero section */

    .hero {
      padding: 3.5rem 0 3rem;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
      gap: 2.5rem;
      align-items: center;
    }

    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.22rem 0.7rem;
      border-radius: var(--radius-full);
      background: rgba(15, 23, 42, 0.9);
      border: 1px solid rgba(55, 65, 81, 0.9);
      font-size: 0.7rem;
      color: var(--muted);
      margin-bottom: 0.75rem;
    }

    .hero-kicker-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 30%, #bbf7d0, #22c55e);
      box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.16);
    }

    .hero-title {
      font-size: clamp(2.1rem, 3vw + 1.1rem, 3.2rem);
      line-height: 1.12;
      margin-bottom: 0.7rem;
    }

    .hero-title span {
      background: linear-gradient(to right, #f9a826, #facc15);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero-subtitle {
      font-size: 0.98rem;
      color: var(--muted);
      max-width: 32rem;
      margin-bottom: 1.4rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
      margin-bottom: 1.7rem;
    }

    .btn-primary,
    .btn-ghost {
      border-radius: var(--radius-full);
      padding: 0.65rem 1.3rem;
      font-size: 0.9rem;
      border: 1px solid transparent;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, #f59e0b, #f97316);
      color: #111827;
      box-shadow: 0 16px 30px rgba(248, 171, 60, 0.45);
      font-weight: 600;
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 20px 40px rgba(248, 171, 60, 0.6);
    }

    .btn-ghost {
      background: rgba(17, 24, 39, 0.9);
      color: var(--muted);
      border-color: rgba(55, 65, 81, 0.9);
    }

    .btn-ghost:hover {
      background: rgba(17, 24, 39, 1);
      border-color: rgba(148, 163, 184, 0.9);
      color: var(--text);
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
      font-size: 0.78rem;
      color: var(--muted);
    }

    .hero-meta-item {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.28rem 0.75rem;
      border-radius: var(--radius-full);
      background: rgba(15, 23, 42, 0.92);
      border: 1px solid rgba(31, 41, 55, 0.9);
    }

    .hero-meta-pill-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: #fbbf24;
    }

    .hero-visual {
      position: relative;
    }

    .hero-card {
      position: relative;
      border-radius: var(--radius-xl);
      background: radial-gradient(circle at top left, #1e293b, #020617);
      border: 1px solid rgba(55, 65, 81, 0.8);
      padding: 1.4rem;
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }

    .hero-card-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.25rem 0.7rem;
      border-radius: var(--radius-full);
      font-size: 0.7rem;
      background: rgba(15, 23, 42, 0.9);
      border: 1px solid rgba(55, 65, 81, 0.9);
      color: var(--muted);
      margin-bottom: 0.7rem;
    }

    .hero-card-main {
      display: grid;
      grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
      gap: 1rem;
      align-items: center;
    }

    .hero-card-title {
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 0.2rem;
    }

    .hero-card-text {
      font-size: 0.8rem;
      color: var(--muted);
    }

    .hero-card-photo {
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid rgba(75, 85, 99, 0.9);
      background:
        linear-gradient(120deg, rgba(248, 171, 60, 0.18), transparent),
        radial-gradient(circle at bottom, rgba(34, 197, 94, 0.2), transparent 60%),
        url("https://images.pexels.com/photos/139488/pexels-photo-139488.jpeg?auto=compress&cs=tinysrgb&w=1200") center/cover no-repeat;
      height: 180px;
    }

    .hero-orbit {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .hero-orbit-pill {
      position: absolute;
      right: 4%;
      top: 12%;
      padding: 0.45rem 0.8rem;
      border-radius: var(--radius-full);
      background: rgba(15, 23, 42, 0.98);
      border: 1px solid rgba(55, 65, 81, 0.9);
      font-size: 0.75rem;
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
    }

    .hero-orbit-pill strong {
      color: var(--accent);
    }

    .hero-orbit-chip {
      position: absolute;
      left: -10%;
      bottom: 10%;
      padding: 0.65rem 0.9rem;
      border-radius: var(--radius-xl);
      background: rgba(15, 23, 42, 0.96);
      border: 1px dashed rgba(75, 85, 99, 0.9);
      font-size: 0.72rem;
      max-width: 210px;
    }

    .hero-orbit-chip span {
      color: #a7f3d0;
      font-weight: 600;
    }

    .hero-orbit-circle {
      position: absolute;
      inset: 15%;
      border-radius: 999px;
      border: 1px dashed rgba(107, 114, 128, 0.7);
      opacity: 0.7;
    }

    /* Section base styling */

    section {
      padding: 2.6rem 0;
    }

    .section-header {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .section-title {
      font-size: 1.35rem;
    }

    .section-kicker {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--muted);
      margin-bottom: 0.15rem;
    }

    .section-subtitle {
      font-size: 0.85rem;
      color: var(--muted);
      max-width: 26rem;
    }

    /* Projects section */

    .grid-projects {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.2rem;
    }

    .card {
      border-radius: var(--radius-lg);
      background: linear-gradient(145deg, #020617, #0b1120);
      border: 1px solid var(--border);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.8);
      padding: 1rem;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      position: relative;
      overflow: hidden;
    }

    .card-tag-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.7rem;
      color: var(--muted);
      margin-bottom: 0.2rem;
    }

    .pill {
      padding: 0.2rem 0.6rem;
      border-radius: var(--radius-full);
      background: var(--accent-soft);
      border: 1px solid rgba(248, 171, 60, 0.5);
      color: var(--accent);
      font-weight: 500;
    }

    .card-title {
      font-size: 0.95rem;
      font-weight: 600;
    }

    .card-text {
      font-size: 0.82rem;
      color: var(--muted);
    }

    .card-footer {
      margin-top: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 0.78rem;
      gap: 0.6rem;
      padding-top: 0.5rem;
      border-top: 1px solid rgba(31, 41, 55, 0.8);
    }

    .link-inline {
      font-size: 0.8rem;
      color: #fbbf24;
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
    }

    .link-inline svg {
      width: 12px;
      height: 12px;
    }

    /* Farm life gallery */

    .grid-photos {
      display: grid;
      grid-template-columns: 2fr 3fr;
      gap: 1.2rem;
    }

    .photo-large {
      border-radius: var(--radius-xl);
      overflow: hidden;
      border: 1px solid rgba(55, 65, 81, 0.9);
      min-height: 240px;
      background:
        linear-gradient(120deg, rgba(74, 222, 128, 0.25), transparent),
        url("https://images.pexels.com/photos/95425/pexels-photo-95425.jpeg?auto=compress&cs=tinysrgb&w=1200") center/cover no-repeat;
    }

    .photo-grid-small {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
    }

    .photo-tile {
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid rgba(55, 65, 81, 0.9);
      min-height: 110px;
      background-size: cover;
      background-position: center;
    }

    .photo-fence {
      background-image: url("https://images.pexels.com/photos/3758851/pexels-photo-3758851.jpeg?auto=compress&cs=tinysrgb&w=1200");
    }

    .photo-dam {
      background-image: url("https://images.pexels.com/photos/838643/pexels-photo-838643.jpeg?auto=compress&cs=tinysrgb&w=1200");
    }

    .photo-workshop {
      background-image: url("https://images.pexels.com/photos/8961562/pexels-photo-8961562.jpeg?auto=compress&cs=tinysrgb&w=1200");
    }

    .photo-sunset {
      background-image: url("https://images.pexels.com/photos/821413/pexels-photo-821413.jpeg?auto=compress&cs=tinysrgb&w=1200");
    }

    /* DIY Guides */

    .grid-guides {
      display: grid;
      grid-template-columns: 3fr 2fr;
      gap: 1.4rem;
    }

    .guides-list {
      display: flex;
      flex-direction: column;
      gap: 0.9rem;
    }

    .guide-item {
      display: flex;
      gap: 0.7rem;
      align-items: flex-start;
      padding-bottom: 0.7rem;
      border-bottom: 1px solid rgba(31, 41, 55, 0.9);
    }

    .guide-step {
      width: 22px;
      height: 22px;
      border-radius: 999px;
      border: 1px solid rgba(156, 163, 175, 0.9);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      color: #e5e7eb;
    }

    .guide-body-title {
      font-size: 0.9rem;
      font-weight: 500;
      margin-bottom: 0.2rem;
    }

    .guide-body-text {
      font-size: 0.8rem;
      color: var(--muted);
    }

    .guide-note {
      font-size: 0.74rem;
      color: var(--muted);
      margin-top: 0.4rem;
    }

    .guide-card {
      border-radius: var(--radius-xl);
      background: radial-gradient(circle at top right, rgba(248, 171, 60, 0.35), #020617);
      border: 1px solid rgba(55, 65, 81, 0.9);
      padding: 1rem;
      font-size: 0.8rem;
      color: var(--muted);
      box-shadow: var(--shadow-soft);
    }

    .guide-card h3 {
      font-size: 0.9rem;
      margin-bottom: 0.4rem;
    }

    .guide-flags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-top: 0.5rem;
    }

    .flag {
      padding: 0.2rem 0.6rem;
      border-radius: var(--radius-full);
      background: rgba(15, 23, 42, 0.9);
      border: 1px solid rgba(75, 85, 99, 0.9);
      font-size: 0.75rem;
    }

    /* About and contact */

    .grid-about-contact {
      display: grid;
      grid-template-columns: 3fr 2fr;
      gap: 1.4rem;
    }

    .about-text {
      font-size: 0.86rem;
      color: var(--muted);
      line-height: 1.6;
    }

    .about-highlight {
      color: #fde68a;
    }

    .contact-card {
      border-radius: var(--radius-xl);
      background: rgba(15, 23, 42, 0.96);
      border: 1px solid rgba(55, 65, 81, 0.9);
      padding: 1rem;
      box-shadow: var(--shadow-soft);
    }

    .contact-row {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      margin-top: 0.5rem;
      font-size: 0.82rem;
      color: var(--muted);
    }

    .contact-label {
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: #9ca3af;
    }

    .contact-link {
      font-size: 0.85rem;
      color: #fbbf24;
    }

    .contact-note {
      font-size: 0.78rem;
      margin-top: 0.4rem;
    }

    .contact-social {
      display: flex;
      gap: 0.6rem;
      margin-top: 0.8rem;
      font-size: 0.78rem;
    }

    .badge-soon {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.75rem;
      padding: 0.2rem 0.6rem;
      border-radius: var(--radius-full);
      background: rgba(15, 23, 42, 0.9);
      border: 1px solid rgba(75, 85, 99, 0.9);
      margin-top: 0.4rem;
    }

    /* Footer */

    footer {
      margin-top: auto;
      padding: 1.8rem 0 1.2rem;
      border-top: 1px solid rgba(31, 41, 55, 0.9);
      font-size: 0.76rem;
      color: var(--muted);
    }

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

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 0.7rem;
    }

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

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

    /* Responsive */

    @media (max-width: 860px) {
      .hero-inner {
        grid-template-columns: minmax(0, 1fr);
      }

      .hero-visual {
        order: -1;
      }

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

      .grid-guides,
      .grid-about-contact {
        grid-template-columns: minmax(0, 1fr);
      }

      .grid-photos {
        grid-template-columns: minmax(0, 1fr);
      }

      .photo-large {
        min-height: 210px;
      }
    }

    @media (max-width: 720px) {
      .nav-inner {
        height: 64px;
      }

      .nav-links {
        display: none;
      }

      .nav-toggle {
        display: inline-flex;
      }

      .hero {
        padding-top: 2.2rem;
      }

      .section-header {
        flex-direction: column;
        align-items: flex-start;
      }

      .grid-projects {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    @media (max-width: 520px) {
      .container {
        padding: 0 1.1rem;
      }

      .hero-title {
        font-size: 1.9rem;
      }

      .hero-card-photo {
        height: 160px;
      }

      .hero-card-main {
        grid-template-columns: minmax(0, 1fr);
      }

      .hero-orbit-pill,
      .hero-orbit-chip {
        display: none;
      }
    }