/* ========================================
   DEAR JACK COFFEE COMPANY - OPTIMIZED SCSS
   ======================================== */
@font-face {
  font-family: "Lemon Milk";
  src: url("/assets/fonts/LEMONMILK-Bold.woff2") format("woff2"), url("/assets/fonts/LEMONMILK-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Brandon Text";
  src: url("/assets/fonts/BrandonText-Regular.woff2") format("woff2"), url("/assets/fonts/BrandonText-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Brandon Text";
  src: url("/assets/fonts/BrandonText-Bold.woff2") format("woff2"), url("/assets/fonts/BrandonText-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-black: #1b1b1b;
  --color-dark-brown: #4a2c1b;
  --color-light-brown: #c19a6b;
  --color-off-white: #f5f0e8;
  --color-dark-green: #6b8e23;
  --color-light-green: #9acd32;
  --color-brown-medium: #73461b;
  --color-beige: #d4c5b9;
  --color-cream: #fbf8f3;
  --font-primary: Brandon Text, sans-serif;
  --font-display: Lemon Milk, serif;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Brandon Text", sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-weight: 400;
  color: #1b1b1b;
  background-color: #fbf8f3;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

h1,
h2,
h3,
.heading {
  font-family: "Lemon Milk", serif, "Brandon Text", sans-serif, sans-serif;
  font-weight: 700;
}

h4,
h5,
h6,
.subtitle {
  font-family: "Brandon Text", sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-weight: 700;
}

.flex-column {
  flex-direction: column;
}

p,
li,
.copy {
  font-family: "Brandon Text", sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-weight: 400;
}

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #6b8e23;
  margin-bottom: 1rem;
}

.section-title {
  font-family: "Lemon Milk", serif;
  font-size: clamp(2rem, 5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: #1b1b1b;
  margin-bottom: 2rem;
}
.section-title.in-view .title-accent::after {
  transform: scaleX(1);
}

.title-accent {
  color: #c19a6b;
  position: relative;
  display: inline-block;
}
.title-accent::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #6b8e23, #9acd32);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.container-full {
  width: 100%;
  padding: 0;
}

.d-flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: "Brandon Text", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}
.btn:hover::before {
  width: 300px;
  height: 300px;
}
.btn-primary {
  background: #4a2c1b;
  color: #f5f0e8;
}
.btn-primary:hover {
  background: #1b1b1b;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(27, 27, 27, 0.3);
}
.btn-secondary {
  background: transparent;
  color: #4a2c1b;
  border-color: #4a2c1b;
}
.btn-secondary:hover {
  background: #4a2c1b;
  color: #f5f0e8;
  transform: translateY(-2px);
}
.btn-outline-light {
  color: #fbf8f3;
  border-color: #fbf8f3;
}
.btn-full {
  width: 100%;
}

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  backdrop-filter: none;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  position: fixed;
  background: #4a2c1b;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom-color: #d4c5b9;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  flex-shrink: 0;
}
.nav-logo .logo-img {
  height: 150px;
  width: auto;
}
@media (max-width: 768px) {
  .nav-logo .logo-img {
    height: 80px;
    margin-left: 1rem;
  }
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}
.nav-menu.active {
  transform: translateX(0);
}
@media (max-width: 768px) {
  .nav-menu li {
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    border-bottom: 1px solid #d4c5b9;
  }
  .nav-menu li a:not(.hero-badge) {
    color: #73461b;
  }
}

.nav-link {
  font-size: 1.2rem;
  font-weight: 500;
  color: #fbf8f3;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link span {
  font-size: 1.8rem;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #6b8e23;
  transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}
.nav-link:hover {
  color: #f5f0e8;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.nav-toggle span {
  margin-right: 1rem;
  width: 25px;
  height: 3px;
  background: #d4c5b9;
  border-radius: 3px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 0;
}
.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #4a2c1b 0%, #c19a6b 100%);
}
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.49;
  background: transparent;
}
.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(54, 37, 8, 0.39) 0%, rgba(68, 46, 11, 0.28) 100%);
  z-index: 1;
}
.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.08;
  background-image: url("/assets/pattern-hearts-text.jpg");
  background-size: cover;
  background-position: center;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: multiply;
}
.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 3;
}
.hero-text {
  animation: fadeInUp 1s ease-out;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0.5rem 1.5rem;
  background: #6b8e23;
  color: #f5f0e8;
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1px;
  animation: bounceIn 1s ease-out 0.3s both;
}
.hero-title {
  font-family: "Lemon Milk", serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: #1b1b1b;
}
.hero-title .title-accent {
  background: linear-gradient(135deg, #4a2c1b, #73461b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.2rem) !important;
  color: #fbf8f3;
  margin-bottom: 4rem;
  max-width: 500px;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  font-family: "Brandon Text", sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1s ease-out 0.5s both;
}

.title-line {
  display: block;
  color: white;
}
.title-line .brown {
  color: #c19a6b;
}

.experience-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.78;
  background: transparent;
}

.coffee-cup-animation {
  width: 100%;
  max-width: 400px;
  animation: float 6s ease-in-out infinite;
}
.coffee-cup-animation .cup-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(27, 27, 27, 0.2));
}

.steam-1 {
  animation: steam 3s ease-in-out infinite;
}

.steam-2 {
  animation: steam 3s ease-in-out 0.5s infinite;
}

.steam-3 {
  animation: steam 3s ease-in-out 1s infinite;
}

.heart-latte {
  animation: heartbeat 2s ease-in-out infinite;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #fbf8f3;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 1px;
  animation: bounce 2s infinite;
  z-index: 10;
}
.scroll-indicator .scroll-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, #fbf8f3, transparent);
}

.about {
  padding: 6rem 0;
  background: #f5f0e8;
  position: relative;
  overflow: hidden;
}
.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  width: 25%;
  background-image: url("/assets/pattern-leaves.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.75;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 768px) {
  .about::before {
    width: 100%;
    height: 20%;
  }
}
@media screen and (max-width: 768px) {
  .about {
    padding: 2rem 0;
  }
}
.about-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-image {
  position: relative;
}
.about-content {
  padding: 2rem;
}
.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a2c1b;
  margin-bottom: 2rem;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 4rem;
}
.about-img {
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}

.our_coffee {
  padding: 6rem 0;
  background: #f5f0e8;
  position: relative;
  overflow: hidden;
}
.our_coffee::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  width: 25%;
  right: 0;
  left: auto;
  background-image: url("/assets/BrownHeart_Circles_Pattern.jpg");
  background-size: 100px;
  background-position: center;
  background-repeat: repeat;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 768px) {
  .our_coffee::before {
    width: 100%;
    height: 20%;
    bottom: 0;
    top: auto;
  }
}
@media screen and (max-width: 768px) {
  .our_coffee {
    padding: 2rem 0;
  }
}
.our_coffee-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .our_coffee-grid {
    grid-template-columns: 1fr;
  }
}
.our_coffee-image {
  position: relative;
}
.our_coffee-content {
  padding: 2rem;
}
.our_coffee-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a2c1b;
  margin-bottom: 2rem;
}
.our_coffee-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 4rem;
}
.our_coffee-img {
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}

.image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.image-frame:hover .about-img {
  transform: scale(1.05);
}
.image-frame .image-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(107, 142, 35, 0.1), rgba(74, 44, 27, 0.1));
  pointer-events: none;
}

.value-item {
  padding: 2rem;
  background: #fbf8f3;
  border-radius: 15px;
  border: 2px solid #d4c5b9;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: #6b8e23;
}
.value-item .value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.value-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1b1b1b;
  margin-bottom: 0.5rem;
}
.value-item p {
  font-size: 0.95rem;
  color: #4a2c1b;
  font-style: italic;
}

.menu {
  padding: 6rem 0;
  background: #fbf8f3;
  position: relative;
  overflow: hidden;
}
.menu-pattern-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 25 Q28 30, 30 35 Q32 30, 30 25' fill='%234A2C1B'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}
.menu-header {
  text-align: center;
  margin-bottom: 4rem;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.menu-card {
  background: white;
  padding: 4rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid #d4c5b9;
  position: relative;
  overflow: hidden;
}
.menu-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #6b8e23, #9acd32);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}
.menu-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: #6b8e23;
}
.menu-card:hover::before {
  opacity: 0.05;
}
.menu-card.featured {
  border-color: #6b8e23;
  border-width: 3px;
}
.menu-card-icon {
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
  animation: iconFloat 3s ease-in-out infinite;
}
.menu-card-title {
  font-family: "Lemon Milk", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1b1b1b;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.menu-card-desc {
  font-size: 1rem;
  color: #4a2c1b;
  margin-bottom: 2rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.menu-card-price {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #6b8e23;
  position: relative;
  z-index: 1;
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #6b8e23;
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 1;
}

.model-display {
  padding: 6rem 0;
  background: #f5f0e8;
  position: relative;
  overflow: hidden;
}

#model-display {
  position: relative;
  background-image: url("/assets/wooden-background.webp");
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  max-height: 700px;
}
@media screen and (max-width: 768px) {
  #model-display {
    max-height: 530px;
  }
}
#model-display::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(245, 240, 232, 0.3) 0%, rgba(245, 240, 232, 0.1) 50%, rgba(245, 240, 232, 0.3) 100%);
  z-index: 0;
}
#model-display .container {
  position: relative;
  z-index: 1;
}

model-viewer {
  width: 100%;
  height: 500px;
  margin: 0 auto 3rem auto;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  model-viewer {
    height: 420px;
  }
}

.coffee-icon-togo {
  max-width: 170px;
}
.coffee-icon-togo img {
  width: 100%;
  max-width: 200px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .coffee-icon-togo {
    display: none;
  }
}

.bloque-text-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.vacio {
  width: 320px;
}

.coffee-slogan {
  max-width: 400px;
}
.coffee-slogan .slogan-text {
  font-size: clamp(2.5rem, 6vw, 6rem);
  font-weight: 700;
  line-height: 1.13;
  margin: 0;
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .coffee-slogan {
    display: none;
  }
}

.drag-indicator .drag-icon {
  font-size: 3rem;
  color: white;
}
.drag-indicator p {
  font-size: 1rem;
  color: white;
}

.experience {
  padding: 6rem 0;
}

#experience {
  position: relative;
  background: #f5f0e8;
  z-index: 2;
}
#experience::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.25;
  background-image: url("/assets/CoffeeCup_Pattern.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

.experience-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 0 2rem;
}

.experience-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 1rem;
  padding: 0 2rem;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover {
  transform: scale(1.02);
  z-index: 10;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 2;
}

.experience-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 6rem;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid #d4c5b9;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.feature-card:hover::before {
  opacity: 1;
}
.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}
.feature-card:hover .feature-badge {
  transform: scale(1.05);
}
.feature-card-artisan {
  border-color: #c19a6b;
}
.feature-card-artisan::before {
  background: linear-gradient(135deg, rgba(193, 154, 107, 0.1), rgba(74, 44, 27, 0.05));
}
.feature-card-artisan .feature-icon {
  color: #4a2c1b;
  background: linear-gradient(135deg, rgba(193, 154, 107, 0.2), rgba(74, 44, 27, 0.1));
}
.feature-card-artisan .feature-badge {
  background: linear-gradient(135deg, #4a2c1b, #73461b);
}
.feature-card-atmosphere {
  border-color: #6b8e23;
}
.feature-card-atmosphere::before {
  background: linear-gradient(135deg, rgba(107, 142, 35, 0.1), rgba(154, 205, 50, 0.05));
}
.feature-card-atmosphere .feature-icon {
  color: #6b8e23;
  background: linear-gradient(135deg, rgba(107, 142, 35, 0.2), rgba(154, 205, 50, 0.1));
}
.feature-card-atmosphere .feature-badge {
  background: linear-gradient(135deg, #6b8e23, #9acd32);
}
.feature-card-sustainable {
  border-color: #73461b;
}
.feature-card-sustainable::before {
  background: linear-gradient(135deg, rgba(212, 197, 185, 0.3), rgba(115, 70, 27, 0.1));
}
.feature-card-sustainable .feature-icon {
  color: #73461b;
  background: linear-gradient(135deg, rgba(212, 197, 185, 0.3), rgba(115, 70, 27, 0.1));
}
.feature-card-sustainable .feature-badge {
  background: linear-gradient(135deg, #73461b, #c19a6b);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  z-index: 1;
}
.feature-icon svg {
  width: 48px;
  height: 48px;
}

.feature-title {
  font-family: "Lemon Milk", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1b1b1b;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.feature-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a2c1b;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.feature-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  color: white;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.coming-soon-ribbon {
  position: absolute;
  top: 22px;
  right: -32px;
  width: 155px;
  padding: 0.4rem 0;
  background: linear-gradient(135deg, #4a2c1b, #73461b);
  color: #f5f0e8;
  font-family: "Brandon Text", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  transform: rotate(40deg);
  box-shadow: 0 3px 12px rgba(74, 44, 27, 0.45);
  z-index: 10;
  pointer-events: none;
  overflow: hidden;
}
.coming-soon-ribbon::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  animation: ribbonShimmer 2.8s ease-in-out infinite;
}

@keyframes ribbonShimmer {
  0% {
    left: -60%;
  }
  60% {
    left: 130%;
  }
  100% {
    left: 130%;
  }
}
.experience-features.swiper {
  padding-bottom: 60px !important;
  overflow: visible;
}
.experience-features.swiper .swiper-wrapper {
  align-items: stretch;
}
.experience-features.swiper .swiper-slide {
  height: auto;
  display: flex;
}
.experience-features.swiper .swiper-slide .feature-card {
  width: 100%;
  height: 100%;
}

.swiper-button-next,
.swiper-button-prev {
  color: #4a2c1b !important;
  background: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px !important;
  font-weight: 700;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #4a2c1b;
  color: white !important;
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(74, 44, 27, 0.3);
}
@media (max-width: 1024px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

.swiper-button-next {
  right: -25px;
}

.swiper-button-prev {
  left: -25px;
}

.swiper-pagination {
  bottom: 20px !important;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #d4c5b9;
  opacity: 0.5;
  transition: all 0.3s ease;
}
.swiper-pagination .swiper-pagination-bullet:hover {
  opacity: 0.7;
  transform: scale(1.2);
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #4a2c1b;
  opacity: 1;
  width: 30px;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .experience-features.swiper {
    padding-bottom: 50px !important;
    margin-left: -2rem;
    margin-right: -2rem;
    padding-left: 2rem;
    padding-right: 0;
  }
  .experience-features.swiper .swiper-slide {
    padding-right: 1rem;
  }
  .swiper-pagination {
    bottom: 10px !important;
  }
}
.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(27, 27, 27, 0.9), transparent);
  color: white;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.gallery-overlay h3 {
  font-family: "Lemon Milk", serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.gallery-overlay p {
  font-size: 0.95rem;
  opacity: 0.9;
}

.contact {
  padding: 6rem 0;
  background: #fbf8f3;
  position: relative;
  overflow: hidden;
}
.contact-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
  background-image: url("/assets/pattern-hearts-text.jpg");
  background-size: cover;
  background-position: center;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info {
  padding-right: 2rem;
}
.contact-form-wrapper {
  background: white;
  padding: 4rem;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 2px solid #d4c5b9;
}
.contact-form h3 {
  font-family: "Lemon Milk", serif;
  font-size: 2rem;
  color: #1b1b1b;
  margin-bottom: 2rem;
}

.info-items {
  margin-top: 4rem;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  flex-direction: row;
}
@media screen and (max-width: 768px) {
  .info-items {
    flex-direction: column;
  }
}

.info-item {
  margin-bottom: 4rem;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  border: 2px solid #d4c5b9;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}
.info-item h4 {
  margin-bottom: 3rem;
  margin-top: 1rem;
  font-family: "Dancing Script", cursive !important;
  font-weight: 700;
  font-style: normal;
  font-size: 2rem;
  color: #c19a6b;
}
.info-item h4 span {
  font-size: 2.4rem;
  color: #4a2c1b;
}
.info-item.photo {
  box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid #cfcfcf;
  transform: rotate(2deg) translateX(25px);
  z-index: 5;
}
.info-item.data {
  box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid #cfcfcf;
  transform: rotate(-1deg);
  max-width: 700px;
}
.info-item:hover {
  transform: translateX(5px);
  border-color: #6b8e23;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.info-item .info-icon {
  font-size: 2rem;
  flex-shrink: 0;
  display: flex;
  gap: 1rem;
}
.info-item .info-content {
  margin-bottom: 1rem;
}
.info-item .info-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1b1b1b;
  margin-bottom: 0.5rem;
}
.info-item .info-content p {
  font-size: 1rem;
  color: #4a2c1b;
  line-height: 1.6;
}
.info-item .info-content .locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .info-item .info-content .locations-grid {
    grid-template-columns: 1fr;
  }
}

.justify-content-between {
  justify-content: space-between;
}

.botones {
  margin-top: 2.5rem;
  justify-content: space-between;
  display: flex;
}
@media screen and (max-width: 768px) {
  .botones a span {
    display: none;
  }
}

.social-links {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.social-link {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #c19a6b;
  color: white;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.social-link:hover {
  background: #6b8e23;
  transform: translateY(-5px) rotate(360deg);
}

.map-button {
  padding: 0.75rem 1.2rem;
  background-color: #6b8e23;
}
@media screen and (max-width: 768px) {
  .map-button {
    width: auto !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .map-button svg {
    width: 20px;
    height: 20px;
    margin-right: 0 !important;
  }
}

.form-group {
  margin-bottom: 2rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  font-family: "Brandon Text", sans-serif;
  font-size: 1rem;
  border: 2px solid #d4c5b9;
  border-radius: 10px;
  background: #fbf8f3;
  color: #1b1b1b;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #6b8e23;
  background: white;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.footer {
  background: #1b1b1b;
  color: #f5f0e8;
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}
.footer-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
  background-image: repeating-linear-gradient(0deg, #4a2c1b 0px, #4a2c1b 1px, transparent 1px, transparent 20px);
}
.footer-content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.footer-logo {
  margin-bottom: 2rem;
}
.footer-logo img {
  height: 80px;
  margin: 0 auto 1rem;
  filter: brightness(0) invert(1);
}
.footer-tagline {
  font-size: 1rem;
  color: #d4c5b9;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom p {
  font-size: 0.9rem;
  color: #d4c5b9;
  margin-bottom: 0.5rem;
}
.footer-love {
  font-style: italic;
  opacity: 0.8;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes steam {
  0% {
    opacity: 0.6;
    transform: translateY(0) scale(1);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 0;
    transform: translateY(-20px) scale(1.2);
  }
}
@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}
@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.8;
  }
}
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .hero-text {
    order: 1;
  }
  .hero-visual {
    order: 2;
  }
  .hero-cta {
    justify-content: center;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-values {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .experience-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 250px);
  }
  .gallery-large {
    grid-column: span 2;
    grid-row: span 1;
  }
  .experience-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .experience-features .feature-card:last-child {
    grid-column: span 2;
  }
}
.map-container {
  margin: 10px 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #d1b9a1;
}
.map-container iframe {
  border: 0;
  filter: sepia(0.4) contrast(1.1);
}

@media (max-width: 768px) {
  :root {
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
  }
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(251, 248, 243, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 4rem 0;
    gap: 0;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
  }
  .nav-toggle {
    display: flex;
  }
  .hero {
    min-height: 100svh;
    padding-top: 100px;
  }
  .hero-content {
    padding: 0 1rem;
  }
  .hero-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  .btn {
    width: 100%;
  }
  .coffee-cup-animation {
    max-width: 280px;
  }
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .experience-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 300px);
    gap: 0.5rem;
    padding: 0 1rem;
  }
  .gallery-large,
  .gallery-wide {
    grid-column: span 1;
    grid-row: span 1;
  }
  .about-img {
    height: 400px;
  }
  .section-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .experience-features {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1rem;
    margin-top: 2rem;
  }
  .feature-card {
    padding: 2rem;
  }
  .feature-card .feature-icon {
    width: 70px;
    height: 70px;
  }
  .feature-card .feature-icon svg {
    width: 40px;
    height: 40px;
  }
  .feature-card .feature-title {
    font-size: 1.3rem;
  }
  .feature-card .feature-description {
    font-size: 0.95rem;
  }
  .coffee-slogan {
    padding: 2rem 0;
    margin-top: 2rem;
  }
  .coffee-slogan .slogan-text {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .coffee-slogan .slogan-text::before, .coffee-slogan .slogan-text::after {
    font-size: 1.2rem;
  }
  .coffee-slogan .slogan-text::before {
    left: -2rem;
  }
  .coffee-slogan .slogan-text::after {
    right: -2rem;
  }
}
.in-view {
  animation: fadeInUp 0.8s ease-out;
}

.no-scroll {
  overflow: hidden;
}

.newsletter {
  padding: 6rem 2rem;
  background: #4a2c1b;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.newsletter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/assets/BrownHeart_Circles_Pattern.jpg");
  background-size: 100px;
  background-repeat: repeat;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}
.newsletter .section-label {
  color: #c19a6b;
  margin-bottom: 0.5rem;
}

.newsletter-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.newsletter-title {
  font-family: "Lemon Milk", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #f5f0e8;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.newsletter-description {
  font-family: "Brandon Text", sans-serif;
  font-size: 1.1rem;
  color: #d4c5b9;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.newsletter-form {
  width: 100%;
}

.newsletter-input-wrap {
  display: flex;
  gap: 0;
  max-width: 520px;
  margin: 0 auto;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.newsletter-input {
  flex: 1;
  padding: 1rem 1.5rem;
  font-family: "Brandon Text", sans-serif;
  font-size: 1rem;
  color: #1b1b1b;
  background: #fbf8f3;
  border: none;
  outline: none;
  min-width: 0;
}
.newsletter-input::-moz-placeholder {
  color: #a0917f;
}
.newsletter-input::placeholder {
  color: #a0917f;
}
.newsletter-input:focus {
  background: #ffffff;
}

.newsletter-btn {
  padding: 1rem 2rem;
  font-family: "Lemon Milk", serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #f5f0e8;
  background: #6b8e23;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.3s ease, transform 0.2s ease;
}
.newsletter-btn:hover {
  background: rgb(82.3355932203, 109.2677966102, 26.9322033898);
  transform: scale(1.02);
}

@media (max-width: 540px) {
  .newsletter {
    padding: 4rem 1.5rem;
  }
  .newsletter-input-wrap {
    flex-direction: column;
    border-radius: 16px;
    overflow: visible;
    box-shadow: none;
    gap: 0.75rem;
  }
  .newsletter-input {
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  }
  .newsletter-btn {
    border-radius: 50px;
    width: 100%;
    padding: 1rem;
    box-shadow: 0 4px 16px rgba(107, 142, 35, 0.35);
  }
}
.notification {
  position: fixed;
  top: 100px;
  right: 20px;
  background: white;
  padding: 1.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  animation: slideInRight 0.4s ease-out;
  max-width: 400px;
  border-left: 4px solid #6b8e23;
}
.notification-success {
  border-left-color: #6b8e23;
}
.notification-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.notification-icon {
  width: 30px;
  height: 30px;
  background: #6b8e23;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}
.notification-message {
  flex: 1;
  margin: 0;
  color: #1b1b1b;
  font-size: 0.95rem;
}
.notification-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #4a2c1b;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.notification-close:hover {
  transform: scale(1.2);
}
@media (max-width: 768px) {
  .notification {
    right: 10px;
    left: 10px;
    max-width: none;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(400px);
    opacity: 0;
  }
}
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #4a2c1b;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-to-top:hover {
  background: #6b8e23;
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

.modal {
  display: flex;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(27, 27, 27, 0.8);
  backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: #fbf8f3;
  border-radius: 12px;
  max-width: 900px;
  width: 90%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal.show .modal-content {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    max-height: 95dvh;
    overflow-y: auto;
  }
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  color: #f5f0e8;
  background: rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease;
}
.modal-close:hover {
  background: rgba(0, 0, 0, 0.6);
}
@media (max-width: 768px) {
  .modal-close {
    color: #1b1b1b;
    background: #f5f0e8;
  }
}

.modal-body {
  display: flex;
  flex-direction: row;
}
@media (max-width: 768px) {
  .modal-body {
    flex-direction: column;
  }
}

.modal-image {
  flex: 1;
  min-height: 300px;
}
.modal-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .modal-image {
    min-height: unset;
    max-height: 200px;
    flex: none;
  }
  .modal-image img {
    height: 200px;
  }
}

.modal-text {
  flex: 1;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .modal-text {
    padding: 1.25rem 1.5rem;
  }
  .modal-text .section-title {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
    margin-bottom: 0.5rem;
  }
  .modal-text .about-text {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
  }
}
.modal-text .section-title {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  margin-bottom: 1rem;
}
.modal-text .about-text {
  margin-bottom: 2rem;
}

.modal-hiring-label {
  font-family: "Brandon Text", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #4a2c1b;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.modal-hiring-label strong {
  color: #73461b;
  font-size: 1.1rem;
}

.modal-tagline {
  margin-top: 1.5rem;
  font-family: "Lemon Milk", serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c19a6b;
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid #d4c5b9;
}/*# sourceMappingURL=styles.css.map */