<section class="fanaiocht-hero">
  <div class="fanaiocht-overlay"></div>

  <nav class="fanaiocht-nav">
    <div class="fanaiocht-logo">
      <div class="tree-icon">☘</div>
      <h1>FÁNAÍOCHT</h1>
      <p>Taste. Culture. Origin.</p>
    </div>

    <div class="fanaiocht-menu">
      <a href="#">Home</a>
      <a href="#">Our Story</a>
      <a href="#">Wines</a>
      <a href="#">Products</a>
      <a href="#">Trade</a>
      <a href="#">Contact</a>
    </div>
  </nav>

  <div class="fanaiocht-content">
    <div class="fanaiocht-text">
      <h2>Authentic Italian Quality.<br>Irish Spirit.</h2>
      <p>
        Fánaíocht brings the finest wines and gourmet specialties from Calabria to Ireland.
        Curated with care. Shared with pride.
      </p>
      <a class="fanaiocht-button" href="#">Our Story →</a>
    </div>
  </div>

  <div class="fanaiocht-features">
    <div>
      <span>🍇</span>
      <h3>Premium Calabrian Wines</h3>
      <p>Hand selected from family wineries we know and trust.</p>
    </div>
    <div>
      <span>🫒</span>
      <h3>Authentic Italian Products</h3>
      <p>Olive oil, cheeses and more, sourced at the origin.</p>
    </div>
    <div>
      <span>🚚</span>
      <h3>Delivered in Ireland</h3>
      <p>Reliable nationwide delivery for trade and private customers.</p>
    </div>
    <div>
      <span>🍷</span>
      <h3>Built on Relationships</h3>
      <p>Long-term partnerships. Quality you can rely on.</p>
    </div>
  </div>
</section>

<style>
.fanaiocht-hero {
  position: relative;
  min-height: 850px;
  color: #fff;
  background:
    linear-gradient(rgba(10,20,12,.35), rgba(10,20,12,.6)),
    url('PASTE-YOUR-IMAGE-URL-HERE') center/cover no-repeat;
  font-family: Georgia, serif;
  overflow: hidden;
}

.fanaiocht-nav {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 45px 7%;
}

.fanaiocht-logo h1 {
  font-size: 44px;
  letter-spacing: 4px;
  margin: 0;
}

.fanaiocht-logo p {
  color: #c9a23f;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 8px;
}

.tree-icon {
  color: #c9a23f;
  font-size: 32px;
}

.fanaiocht-menu a {
  color: #fff;
  text-decoration: none;
  margin-left: 32px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
}

.fanaiocht-content {
  position: relative;
  z-index: 2;
  padding: 120px 7% 180px;
}

.fanaiocht-text {
  max-width: 680px;
}

.fanaiocht-text h2 {
  font-size: 64px;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.fanaiocht-text p {
  font-family: Arial, sans-serif;
  font-size: 21px;
  line-height: 1.6;
  max-width: 540px;
}

.fanaiocht-button {
  display: inline-block;
  margin-top: 28px;
  background: #c9a23f;
  color: #fff;
  padding: 16px 34px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 3px;
  font-family: Arial, sans-serif;
}

.fanaiocht-features {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(16, 29, 15, .95);
  padding: 30px 7%;
  box-sizing: border-box;
  gap: 30px;
}

.fanaiocht-features span {
  font-size: 34px;
  color: #c9a23f;
}

.fanaiocht-features h3 {
  color: #d8b85a;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.fanaiocht-features p {
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .fanaiocht-menu {
    display: none;
  }

  .fanaiocht-text h2 {
    font-size: 42px;
  }

  .fanaiocht-features {
    position: relative;
    grid-template-columns: 1fr;
  }
}
</style>