:root {
 
  --breeze-1: #203d0f;
  --breeze-2: #cedbb4;
  --breeze-3: #6f7749;
  --breeze-4: #e6962b;
  --breeze-5: #e2bd77;
  --breeze-6: #eec138;
 
  --display-font: "Playfair Display", serif;
  --sans-font: "Montserrat", "Canva Sans", "Arial MT Pro", sans-serif;
 
  --max-width: 1200px;

  --accent-blue: #4fb5d4;
  --card-bg: #f4efe0;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--sans-font);
  color: var(--breeze-1);
  background: #ffffff;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: var(--breeze-6);
}

body {
  padding-top: 100px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}

.logo img {
  height: 340px;
  width: auto;
  display: block;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 28px;
  align-items: center;
}

.main-nav a {
  display: inline-block;
  text-decoration: none;
  color: var(--breeze-1);
  font-weight: 700;
  letter-spacing: 1px;
  padding: 8px 0;
  transition: color 0.15s ease;
}

.main-nav a:hover {
  color: var(--breeze-4);
}

.header-cta {
  margin-left: 16px;
}

.btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
}

.btn-order {
  background: var(--breeze-2);
  color: var(--breeze-1);
  border: 3px solid var(--breeze-1);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.15);
  padding: 10px 22px;
}

.btn-order:hover {
  background: var(--breeze-6);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 28px;
  cursor: pointer;
}

h1,
h2,
h3 {
  font-family: var(--display-font);
  margin: 0;
}

.hero-carousel {
  position: relative;
  overflow: hidden;
  height: 820px;
  min-height: 320px;
}

.hero-carousel .slides {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.8s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.hero-carousel .slide {
  min-width: 100%;
  height: 100%;
  flex: 0 0 100%;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #ffffff;
}

.carousel-caption {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  z-index: 3;
  padding: 0 20px;
}

.carousel-caption h1 {
  font-weight: 700;
  font-size: 72px;
  line-height: 0.95;
  margin: 0;
  color: #ffffff;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.55);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.carousel-caption .subtitle {
  font-size: 36px;
  margin: 16px 0 22px;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

.hero-order {
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 18px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.12);
  width: 44px;
  height: 44px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  cursor: pointer;
  z-index: 4;
}

.carousel-btn.prev {
  left: 18px;
}

.carousel-btn.next {
  right: 18px;
}

.carousel-btn:hover {
  background: #ffffff;
}

.hero-carousel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 20px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.18) 100%);
  z-index: 2;
}

.gift-section {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  height: 600px;
  border-radius: 6px;
}

.gift-section .gift-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gift-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 20px;
  background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25));
  z-index: 2;
}

.gift-overlay h2 {
  letter-spacing: 6px;
  font-size: 48px;
  margin: 0 0 10px;
}

.gift-overlay .gift-sub {
  font-size: 18px;
  margin: 0 0 18px;
  opacity: 0.95;
}

.btn-gift {
  background: var(--breeze-2);
  color: var(--breeze-1);
  border: 3px solid var(--breeze-1);
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
}

.btn-gift:hover {
  background: var(--breeze-6);
}

.visit-section {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  width: 100%;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visit-section .visit-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}

.visit-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-visit {
  background: var(--breeze-4);
  color: #062b33;
  border: 3px solid rgba(0, 0, 0, 0.08);
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 800;
  letter-spacing: 2px;
  text-decoration: none;
}

.btn-visit:hover {
  filter: brightness(0.98);
}

.career-hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
  height: 1000px;
    display: flex;
  justify-content: center;
  align-items: center;
}

.career-hero .career-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.career-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  background: linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18));
  z-index: 2;
}

.career-overlay h2 {
  color: #ffffff;
  font-size: 42px;
  letter-spacing: 2px;
  margin: 0;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
}

.feature-section {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 36px;
  align-items: stretch;
  margin: 40px auto;
}

.feature-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 2px;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  padding-top: 30px;
  padding-bottom: 30px;
}

#merch .feature-image {
  height: 380px;
}

#merch .feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.feature-card {
  background: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card-inner {
  background: var(--card-bg);
  border: 6px solid var(--breeze-1);
  padding: 22px 28px;
  border-radius: 6px;
  width: 580px;
  height: 250px;
  max-width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.feature-card-inner h2 {
  font-size: 34px;
  margin: 0 0 8px;
  letter-spacing: 6px;
}

.feature-card-inner .lead {
  color: #333333;
  margin: 0 0 20px;
}

.btn-view {
  background: var(--breeze-1);
  color: #ffffff;
  border: 3px solid rgba(0, 0, 0, 0.08);
  padding: 12px 20px;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
}

.btn-view:hover {
  filter: brightness(0.96);
}

.news-section {
  padding: 0 20px 40px;
}

.news-section .section-header {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.news-section h2 {
  letter-spacing: 6px;
  font-size: 28px;
  margin: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 36px;
}

.card {
  background: transparent;
  text-align: center;
}

.card-frame {
  border: 4px solid var(--breeze-1);
  padding: 0;
  background: transparent;
}

.card-frame .img-wrap {
  border: 0;
  padding: 0;
  background: transparent;
}

.card-frame .img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.card-title {
  font-size: 16px;
  margin: 14px 0 0;
  letter-spacing: 1px;
  color: var(--breeze-1);
  text-transform: uppercase;
}





.site-footer {
  background: var(--breeze-1);
  color: var(--breeze-2);
  padding: 20px 0;
  border-top: 0;
}

.footer-inner {
  display: flex;
  justify-content: center;
}

.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 36px;
  align-items: center;
}

.footer-nav a {
  color: var(--breeze-2);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 10px;
}

.footer-nav a:hover {
  color: var(--breeze-6);
}

@media (max-width: 1100px) {
  .header-inner {
    height: 80px;
  }

  .logo img {
    height: 64px;
  }

  .carousel-caption h1 {
    font-size: 52px;
  }

  .carousel-caption .subtitle {
    font-size: 28px;
  }

  .hero-carousel {
    height: 480px;
  }

  .gift-section {
    height: 360px;
  }

  .career-hero .career-bg {
    height: 360px;
  }

  .career-overlay h2 {
    font-size: 34px;
  }

  .card-frame .img-wrap img {
    height: 160px;
  }

  .feature-section {
    grid-template-columns: 1fr 360px;
  }
}

@media (max-width: 900px) {
 
  .header-inner {
    height: auto;
    padding: 8px 0;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
 
  .logo img {
    height: 100px;
  }
 
  .main-nav {
    position: static;
    width: 100%;
  }
 
  .main-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 18px;
  }

  .main-nav a {
    padding: 8px 4px;
    border-bottom: none;
  }

 
  .header-cta {
    order: 3;
    margin-left: 0;
    margin-top: 4px;
  }

  .nav-toggle {
    display: none;
  }

 
  .visit-section .visit-bg {
    height: 220px;
  }

  .btn-visit {
    padding: 12px 22px;
  }

  .gift-section {
    height: 260px;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 740px) {
  .feature-section {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 0;
  }

  .feature-card {
    order: 2;
    background: transparent;
    border-radius: 6px;
  }

  .feature-card-inner {
    width: 100%;
    padding: 18px;
  }

  .feature-image {
    order: 1;
    height: 260px;
  }
}

@media (max-width: 700px) {
  .carousel-caption h1 {
    font-size: 34px;
  }

  .carousel-caption .subtitle {
    font-size: 18px;
  }

  .hero-carousel {
    height: 360px;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .career-hero .career-bg {
    height: 260px;
  }

  .career-overlay h2 {
    font-size: 22px;
  }
}


@media (max-width: 560px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

  .card-frame .img-wrap img {
    height: 220px;
  }

  .footer-nav ul {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .visit-section .visit-bg {
    height: 160px;
  }

  .btn-visit {
    padding: 10px 16px;
    font-size: 14px;
  }

  .gift-section {
    height: 200px;
  }

  .gift-overlay h2 {
    font-size: 26px;
  }

  .gift-overlay .gift-sub {
    font-size: 14px;
  }
}

@media (max-width: 900px) {
  .site-header {
    position: static;
  }

  body {
    padding-top: 0;
  }
}

@media (max-width: 900px) {

  .gift-section,
  .visit-section,
  #merch.feature-section,
  .career-hero {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
 
  .feature-section {
    padding: 10px 0 !important;
  }
}

