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

html {
  scroll-behavior: smooth;
}

:root {
  --primary-olive: #4a5a3a;
  --light-olive: #6b7b5a;
  --soft-olive: #8a9b7a;
  --pale-olive: #c4d4b4;
  --cream-bg: #f5f5f0;
  --beige: #e8e5d8;
  --dark-text: #2a2a1a;
  --light-text: #6b6b5a;
  --white: #ffffff;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--dark-text);
  background-color: var(--cream-bg);
  line-height: 1.7;
  overflow-x: hidden;
  font-weight: 300;
}

body.menu-open {
  overflow: hidden !important;
}

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

/* Header */
.header {
  background-color: var(--white);
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  padding: 10px 0;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

#logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  display: block;
}

#logo-img:not([src]) {
  display: none;
}

.logo-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-olive);
  letter-spacing: 2px;
}

.nav {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.nav-link {
  text-decoration: none;
  color: var(--dark-text);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Cormorant Garamond", serif;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-olive);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-olive);
  transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
  height: 90vh;
  background-image: url("hero_png_2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
  z-index: 0;
}

.hero-content {
  text-align: center;
  z-index: 2;
  position: relative;
  animation: fadeInUp 1s ease;
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 68px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 25px;
  letter-spacing: 8px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4), 0 4px 20px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
}

.hero-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 10px;
  line-height: 1.4;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 3px 15px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  opacity: 0.95;
}

.hero-description {
  font-family: "EB Garamond", serif;
  font-size: 22px;
  color: #ffffff;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 1.5px;
  line-height: 1.6;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4), 0 2px 12px rgba(0, 0, 0, 0.2);
  margin-top: 15px;
  opacity: 0.9;
}

/* Offer Section */
.offer-section {
  padding: 100px 0;
  background-image: url("offer_section.png");
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 70% auto;
  background-color: var(--white);
  position: relative;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  text-align: center;
  color: var(--dark-text);
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
  width: 100%;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-olive), var(--soft-olive));
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 80px;
}

.offer-card {
  text-align: center;
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.offer-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 40px rgba(74, 90, 58, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.offer-icon {
  font-size: 50px;
  margin-bottom: 20px;
}

.offer-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  color: var(--dark-text);
  margin-bottom: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.offer-text {
  font-family: "EB Garamond", serif;
  color: var(--light-text);
  font-size: 16px;
  line-height: 1.9;
  font-weight: 400;
}

/* Coming Soon Section */
.coming-soon-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--pale-olive) 0%,
    var(--soft-olive) 100%
  );
  text-align: center;
}

.coming-soon-content {
  max-width: 700px;
  margin: 0 auto;
}

.coming-soon-text {
  font-family: "EB Garamond", serif;
  font-size: 20px;
  color: var(--dark-text);
  line-height: 2;
  margin-bottom: 40px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.coming-soon-highlight {
  display: inline-block;
  padding: 15px 40px;
  background-color: var(--white);
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.coming-soon-highlight p {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  color: var(--primary-olive);
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Footer */
.footer {
  background-color: var(--dark-text);
  color: var(--white);
  padding: 60px 0 30px;
}

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

.footer-brand {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 12px;
  margin-top: 0;
}

.footer-tagline {
  font-family: "EB Garamond", serif;
  color: var(--beige);
  font-size: 15px;
  font-style: italic;
  font-weight: 400;
}

.footer-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--beige);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  font-family: "EB Garamond", serif;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--pale-olive);
}

.contact-icon {
  font-size: 20px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-link {
  font-family: "EB Garamond", serif;
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
  font-weight: 400;
}

.social-link:hover {
  color: var(--pale-olive);
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--light-text);
  font-size: 14px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tablet Specific Styles */
@media (min-width: 481px) and (max-width: 1024px) {
  .offer-section {
    background-size: 150% auto;
    background-position: top right;
  }

  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .offer-card {
    padding: 35px 25px;
    max-width: 100%;
    margin: 0 auto;
  }

  /* For 2-column layout, ensure last card centers if odd number */
  .offer-grid .offer-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .header {
    padding: 15px 0;
  }

  .header-content {
    gap: 20px;
    padding: 5px 0;
  }

  #logo-img {
    height: 55px;
  }

  .nav {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-link {
    font-size: 14px;
    letter-spacing: 0.5px;
  }

  .hero {
    height: 85vh;
    min-height: 500px;
  }

  .hero-title {
    font-size: 38px;
    letter-spacing: 5px;
    line-height: 1.2;
    margin-bottom: 18px;
  }

  .hero-subtitle {
    font-size: 18px;
    letter-spacing: 5px;
    margin-bottom: 15px;
  }

  .hero-description {
    font-size: 18px;
    letter-spacing: 1px;
  }

  .hero-content {
    padding: 30px 15px;
    max-width: 100%;
  }

  .offer-section {
    padding: 60px 0;
    background-size: 90% auto;
    background-position: top right;
  }

  .section-title {
    font-size: 32px;
    letter-spacing: 1.5px;
    margin-bottom: 40px;
  }

  .section-title::after {
    width: 60px;
    height: 2px;
  }

  .offer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 50px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
  }

  .offer-card {
    padding: 30px 20px;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
  }

  .offer-title {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .offer-text {
    font-size: 15px;
  }

  .coming-soon-section {
    padding: 60px 0;
  }

  .coming-soon-content {
    padding: 0 15px;
  }

  .coming-soon-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
  }

  .coming-soon-highlight {
    padding: 12px 30px;
  }

  .coming-soon-highlight p {
    font-size: 20px;
    letter-spacing: 2px;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
    text-align: center;
  }

  .footer-logo-img {
    height: 40px;
    margin: 0 auto 12px;
  }

  .footer-heading {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .footer-tagline {
    text-align: center;
  }

  .contact-link {
    justify-content: center;
  }

  .social-links {
    align-items: center;
  }

  .nav {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .header {
    padding: 12px 0;
  }

  .header-content {
    gap: 15px;
  }

  #logo-img {
    height: 45px;
  }

  .nav {
    gap: 15px;
    flex-wrap: wrap;
  }

  .nav-link {
    font-size: 13px;
    letter-spacing: 0.3px;
  }

  .hero {
    height: 80vh;
    min-height: 450px;
  }

  .hero-title {
    font-size: 28px;
    letter-spacing: 3px;
    line-height: 1.25;
    margin-bottom: 15px;
  }

  .hero-subtitle {
    font-size: 16px;
    letter-spacing: 4px;
    margin-bottom: 12px;
  }

  .hero-description {
    font-size: 16px;
    letter-spacing: 0.5px;
    margin-top: 8px;
  }

  .hero-content {
    padding: 20px 12px;
  }

  .offer-section {
    padding: 50px 0;
    background-size: 200% auto;
    background-position: right 60px;
  }

  .section-title {
    font-size: 26px;
    letter-spacing: 1px;
    margin-bottom: 30px;
  }

  .section-title::after {
    width: 50px;
    height: 2px;
  }

  .offer-grid {
    gap: 20px;
    margin-top: 40px;
  }

  .offer-card {
    padding: 25px 18px;
  }

  .offer-icon {
    font-size: 40px;
    margin-bottom: 15px;
  }

  .offer-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .offer-text {
    font-size: 14px;
    line-height: 1.7;
  }

  .coming-soon-section {
    padding: 50px 0;
  }

  .coming-soon-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
  }

  .coming-soon-highlight {
    padding: 10px 25px;
  }

  .coming-soon-highlight p {
    font-size: 18px;
    letter-spacing: 1.5px;
  }

  .footer {
    padding: 35px 0 15px;
  }

  .footer-content {
    gap: 25px;
  }

  .footer-logo-img {
    height: 35px;
    margin-bottom: 10px;
  }

  .footer-heading {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .footer-tagline {
    font-size: 14px;
  }

  .contact-link {
    font-size: 15px;
  }

  .social-link {
    font-size: 14px;
  }

  .footer-bottom {
    padding-top: 20px;
    font-size: 12px;
  }
}

/* Robust Hamburger and Close X styles */
.hamburger {
  position: relative;
  z-index: 2200 !important;
  width: 28px;
  height: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  width: 18px;
  height: 2px;
  margin: 3px 0;
  background: var(--primary-olive);
  border-radius: 1.5px;
  transition: all 0.3s cubic-bezier(0.4, 2, 0.6, 1);
}
.hamburger.open span {
  opacity: 0;
}
.hamburger .close-x {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: none;
  opacity: 0;
  pointer-events: none;
}
.hamburger.open .close-x {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  pointer-events: all;
  color: var(--primary-olive);
  background: none;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  z-index: 2220;
  text-shadow: 0 0 6px #fff, 0 2px 18px #fff;
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(250, 245, 240, 0.95);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  box-shadow: -12px 0 32px rgba(100, 100, 100, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.36s cubic-bezier(0.4, 2, 0.6, 1), opacity 0.2s;
  z-index: 2000;
  font-family: "Cormorant Garamond", serif;
}
.mobile-nav.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.mobile-nav .nav-link {
  color: var(--primary-olive);
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  margin: 24px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
  padding: 8px 25px;
  border-radius: 6px;
  display: block;
}
.mobile-nav .nav-link:hover {
  background: var(--primary-olive);
  color: var(--white);
}

.mobile-nav .close-x {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 2.2rem;
  color: var(--primary-olive);
  z-index: 2025;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 2px 10px #fff;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav .close-x:active,
.mobile-nav .close-x:hover {
  background: var(--primary-olive);
  color: #fff;
}
.mobile-nav .close-x:focus {
  outline: 2px solid var(--primary-olive);
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: row;
    gap: 24px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .hamburger {
    display: flex !important;
  }
}

@media (min-width: 769px) {
  .mobile-nav {
    display: none !important;
  }
}

/* Hide hamburger by default */
.hamburger {
  display: none !important;
}

/* Mobile/tablet only: show hamburger */
@media (max-width: 768px) {
  .hamburger {
    display: flex !important;
  }
}
