/* ==================================================
   RESET
================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans KR", sans-serif;
    color: #111;
    background: #fffbf1;
    line-height: 1.7;
}

img {
    width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

h2 {
    font-size: 60px;
}

h1,
h2,
h3,
p {
    margin: 0;
}

h1,
h2,
h3 {
    line-height: 1.2;
}

p {
    color: #666;
    font-size: 17px;
}

section {
    padding: 140px 10%;
}

/* ==================================================
   HEADER
================================================== */

#header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;

    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 30px 80px;

    background: transparent;

    transition:
        background 0.4s ease,
        padding 0.4s ease,
        box-shadow 0.4s ease;
}

.logo {
    width: 150px;
}

.logo img {
    width: 100%;
}

#nav {
    display: flex;
    align-items: center;
    gap: 45px;
}

#nav a {
    color: #fff;

    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    letter-spacing: 0.04em;

    transition: color 0.3s ease;
}

#nav a:hover {
    color: #d8a9a9;
}

#header.scrolled {
    padding: 20px 40px;

    background: #6d1212;

    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

#header.scrolled #nav a {
    color: #fff;
}

#header.scrolled #nav a:hover {
    color: #e8bcbc;
}

/* Google Translate 위젯을 화면 오른쪽 아래에 고정합니다. */
.translate-control {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1000;

    width: 128px;

    padding: 7px;

    border: 1px solid #e8e8e8;
    border-radius: 5px;

    background: #fff !important;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.12);

    opacity: 1;
    isolation: isolate;

    line-height: 1.3;
}

/* Google 제공 문구와 로고가 기본 형태로 보이도록 정리합니다. */
.goog-te-gadget {
    color: #777 !important;
    font-family: "Noto Sans KR", sans-serif !important;
    font-size: 9px !important;
    line-height: 1.35 !important;
}

.goog-te-gadget img {
    width: auto;
    display: inline-block;
    vertical-align: middle;
}

.goog-te-gadget a {
    color: #777 !important;

    font-size: 10px !important;
}

/* 번역 언어 드롭다운을 참고 디자인과 같은 간결한 입력 형태로 만듭니다. */
.goog-te-combo {
    width: 100%;
    height: 26px;

    margin: 0 0 5px !important;
    padding: 0 5px;

    border: 1px solid #aaa;
    border-radius: 2px;
    outline: 0;

    color: #333;
    background: #fff;

    font-family: "Noto Sans KR", sans-serif;
    font-size: 11px;

    cursor: pointer;
}

/* Google Translate 상단 배너는 사이트 레이아웃에 영향을 주지 않게 숨깁니다. */
.goog-te-banner-frame,
.skiptranslate iframe {
    display: none !important;
}

body {
    top: 0 !important;
}

/* ==================================================
   MOBILE MENU BUTTON
================================================== */

.menu-toggle {
    display: none;

    width: 32px;
    height: 28px;

    padding: 0;

    border: 0;
    background: transparent;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 100%;
    height: 2px;

    margin: 6px 0;

    background: #fff;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==================================================
   HERO
================================================== */

.hero {
    position: relative;

    height: 100vh;
    min-height: 700px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    color: #fff;

    background: url("img/bg/hero.jpg") center / cover no-repeat;
}

.hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.28);
}

.hero-text {
    position: relative;
    z-index: 1;

    font-family: "Noto Sans KR", sans-serif;
}

.hero-text > span {
    display: block;

    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    letter-spacing: 6px;
}

.hero h1 {
    margin: 25px 0;

    font-family: "Google Sans", sans-serif;
    font-size: 82px;
    font-weight: 800;
    letter-spacing: 5px;
}

.hero p {
    margin-bottom: 50px;

    color: #fff;

    font-size: 18px;
    opacity: 0.9;
}

.btn {
    display: inline-block;

    padding: 16px 45px;

    border: 1px solid #fff;

    font-family: "Montserrat", sans-serif;

    transition:
        background 0.35s ease,
        color 0.35s ease;
}

.btn:hover {
    color: #111;
    background: #fff;
}

/* ==================================================
   JOURNEY
================================================== */

/* ==================================================
   JOURNEY
================================================== */

.journey {
    width: 100%;
    max-width: 1500px;

    margin: 180px auto;
    padding: 0 40px;

    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 80px;

    align-items: start;
}

.journey-intro {
    position: sticky;
    top: 120px;

    max-width: 520px;
    margin-bottom: 10px;
}

.journey-intro > span {
    display: block;

    margin-bottom: 18px;

    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3em;

    color: #8f2033;
}

.journey-intro h2 {
    margin: 25px 0;

    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    line-height: 1.15;
}

.journey-intro p {
    font-family: "Noto Sans KR", sans-serif;
    font-size: 16px;
    color: #666;
    line-height: 1.9;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.journey-card {
    text-decoration: none;
    color: #111;

    transition: 0.4s;
}

.journey-image {
    overflow: hidden;
}

.journey-image img {
    width: 100%;
    aspect-ratio: 3/4;

    object-fit: cover;

    transition: 0.6s;
    min-width: 105.41px;
}

.journey-content {
    padding-top: 22px;
}

.journey-content h3 {
    font-size: 36px;
    font-weight: 700;
        font-family: "Montserrat", sans-serif;
}

.journey-content span {
    display: block;
    margin-top: 6px;
        font-family: "Montserrat", sans-serif;

    color: #8f2033;
    font-size: 14px;
    letter-spacing: 1px;
}

.journey-content p {
    margin: 18px 0 25px;

    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

.journey-link {
    display: inline-block;

    font-size: 15px;
    font-weight: 600;

    position: relative;
}

.journey-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -5px;

    width: 0;
    height: 1px;

    background: #111;

    transition: 0.35s;
}

.journey-card:hover .journey-link::after {
    width: 100%;
}

.journey-card:hover img {
    transform: scale(1.05);
}


/* ==================================================
   STORY
================================================== */

.story {
    text-align: center;
    font-family: "Noto Sans KR", sans-serif;
    color: #fff;
    background: url("img/bg/origins.jpg") center / cover fixed;
}

.story h2 {
    margin-bottom: 30px;

    font-family: "Montserrat", sans-serif;
}

.story p {
    color: #fff;
}

.story-slider {
    width: 100%;

    margin: 70px 0;

    overflow: hidden;
}

.slide-track {
    display: flex;
    width: max-content;
    gap: 25px;
    animation: slide 30s linear infinite;
}*/

.slide-track img {
    width: 520px;
    height: 340px;

    flex-shrink: 0;

    object-fit: cover;

    border-radius: 18px;
}

@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ==================================================
   ORIGINS
================================================== */

.origins {
    width: 100%;

    overflow: hidden;

    background: url("img/bg/origins.jpg") center / cover fixed;
}

.origins-container {
    width: min(1500px, 90%);

    display: grid;

    grid-template-columns: 45% 55%;

    gap: 50px;

    align-items: center;

    margin: 0 auto;
}

.origin-content {
    position: sticky;
    top: 100px;

    color: #fef7ef;
}

.section-label {
    display: block;

    margin-bottom: 20px;

    color: #fef7ef;

    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.origin-content h2 {
    margin-bottom: 20px;

    font-family: "Montserrat", sans-serif;

    font-weight: 800;
}

.origin-content p {
    color: #fef7ef;
    font-family: "Noto Sans KR", sans-serif;

    line-height: 1.8;
}

.origin-content p b {
    color: #fff;
}

/* ==================================================
   ORIGIN SLIDER
================================================== */

/* ===========================
   SINGLE ORIGIN
=========================== */

.origin-banner {
    width: 100%;
    max-width: 1500px;
    margin: 120px auto;
    padding: 0 40px;

    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 70px;
    align-items: center;

    overflow: hidden;
}

/* ===========================
   LEFT
=========================== */

.origin-text span {
    display: inline-block;
    margin-bottom: 15px;

    color: #8f2033;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
}

.origin-text h2 {
    font-size: 54px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #222;
}

.origin-text p {
    color: #666;
    font-size: 18px;
    line-height: 1.8;
}

/* ===========================
   SLIDER
=========================== */

.origin-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.origin-track {
    display: flex;
    gap: 25px;

    transition: transform 0.6s ease;
    will-change: transform;
}

/* ===========================
   CARD
=========================== */

.origin-item {
    min-width: 340px;
    flex-shrink: 0;

    border-radius: 20px;
    overflow: hidden;

    background: #fff;

    cursor: pointer;

    transition: 0.35s;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.origin-item:hover {
    transform: translateY(-8px);
}

.origin-item img {
    width: 100%;
    display: block;
    aspect-ratio: 4/5;
    object-fit: cover;

    transition: 0.5s;
}

.origin-item:hover img {
    transform: scale(1.05);
}

/* ===========================
   LIGHTBOX
=========================== */

.lightbox {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.85);

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    visibility: hidden;

    transition: 0.3s;

    z-index: 9999;
}

.lightbox.show {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 15px;
}

.close {
    position: absolute;

    top: 35px;
    right: 45px;

    color: #fff;

    font-size: 45px;

    cursor: pointer;
}

.origin-slider {
    position: relative;
    width: 100%;
    border: 1px solid #8f2033;
    border-radius: 10px;
}

.origin-track {
    position: relative;

    width: 100%;

    aspect-ratio: 4 / 3;

    overflow: hidden;

    border-radius: 10px;
}

.origin-slide {
    position: absolute;
    inset: 0;

    visibility: hidden;

    opacity: 0;

    transition:
        opacity 0.6s ease,
        visibility 0.6s ease;
}

.origin-slide.active {
    z-index: 2;

    visibility: visible;

    opacity: 1;
}

.origin-slide img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.origin-navigation {
    position: absolute;
    left: 50%;
    bottom: 28px;

    z-index: 10;

    transform: translateX(-50%);
}

.dots {
    display: flex;

    gap: 12px;
}

.dot {
    width: 10px;
    height: 10px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: #d0d0d0;

    cursor: pointer;

    transition:
        width 0.35s ease,
        background 0.35s ease;
}

.dot.active {
    width: 34px;

    border-radius: 30px;

    background: #6b1d24;
}

/* ==================================================
   MENU
================================================== */

/* ======================================
   COFFEE BEANS
====================================== */

.beans-section {
    max-width: 1500px;
    width: 100%;
    margin: 140px auto;
    
}

/* HEADER */

.beans-header {
    text-align: center;
    margin-bottom: 74px;
}

.beans-header span {
    display: block;

    font-size: 13px;

    letter-spacing: 0.18em;

    color: #8e343a;

    margin-bottom: 12px;
}

.beans-header h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;

    font-size: 40px;
    color: #7a2030;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 18px;
}

.beans-header h3::before,
.beans-header h3::after {
    content: "";
    flex: 1;
    max-width: 180px;
    height: 1px;
    background: linear-gradient(to right, transparent, #d3cec6, transparent);
}

.beans-header p {
    color: #555;
    font-size: 16px;


    line-height: 1.8;
}

/* GRID */

.beans-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 35px;
}

/* CARD */

.bean-card {
    display: grid;
    grid-template-columns: 42% 58%;
    border: 1px solid #e8e2d9;
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
}

.bean-card:hover {


    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.07);
}

/* IMAGE */

.bean-image {
    height: 100%;
}

.bean-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* CONTENT */

.bean-content {
    padding: 36px 40px;
}

.bean-label {
    font-family: "Montserrat", sans-serif;

    display: block;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 0.18em;

    color: #8e343a;

    margin-bottom: 1px;
}

.bean-content h4 {
    font-family: "Montserrat", sans-serif;

    font-size: 35px;
    font-weight: 900;

    margin-bottom: 1px;
}

.bean-flavor {
    font-family: "Montserrat", sans-serif;

    color: #8e343a;

    margin-bottom: 10px;
}

.bean-desc {
    color: #666;

    line-height: 1.8;
}






/* ========================================
   BEANS CONTACT CTA
======================================== */

.beans-contact {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid #dedbd5;
  text-align: center;
}

.beans-contact-title {
  margin: 0 0 10px;
  color: #7f1828;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.beans-contact-desc {
  margin: 0;
  color: #555;
  font-size: 14px;
  line-height: 1.8;
}

.beans-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 22px;
  padding: 13px 24px;
  background: #7f1828;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-decoration: none;
  transition: all 0.3s ease;
}

.beans-contact-btn span {
  font-size: 16px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.beans-contact-btn:hover {
  background: #65121f;
}

.beans-contact-btn:hover span {
  transform: translateX(4px);
}











/* =========================
   IN MENU
========================== */

.in-menu-title {
    width: 120px;
    height: 40px;

    border: 1px solid #111;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 40px;

    font-size: 12px;
    letter-spacing: 0.12em;
    font-weight: 600;
}

/* =========================
   EXPERIENCE ZONE
========================== */

.experience-zone {
    max-width: 1500px;

    margin: 0 auto 120px;

    display: grid;

    grid-template-columns: 600px 1fr;

    gap: 60px;

    align-items: center;
}

.experience-intro {
    margin: 0 0 20px;

    line-height: 1.8;

    font-size: 17px;
    font-weight: 500;

    color: #555;
}

.experience-values {
    display: flex;

    flex-direction: column;

    gap: 22px;
}

.experience-value {
    display: flex;

    gap: 20px;

    padding-top: 20px;

    border-top: 1px solid #ddd;
}

.experience-value > span {
    font-size: 11px;

    letter-spacing: 0.1em;

    color: #888;
}

.experience-value h4 {
    margin: 0 0 8px;

    font-size: 16px;

    font-weight: 700;
}

.experience-value p {
    margin: 0;

    font-size: 13px;

    line-height: 1.6;

    color: #777;
}

/* =========================
   LEFT TEXT
========================== */

.experience-text {
    width: 100%;

    padding: 40px 0;

    font-family: "Montserrat", sans-serif;
}

.experience-label {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 10px 16px;

    background-color: #7a2030;
    color: #fff;

    font-size: 11px;
    font-weight: 500;

    letter-spacing: 0.12em;

    margin-bottom: 15px;
}

.experience-text h3 {
    margin: 0 0 24px;

    font-size: 40px;

    font-weight: 900;
}

.experience-values p {
    margin: 0;

    line-height: 1.8;

    font-size: 15px;

    color: #555;
}

/* =========================
   IMAGE SLIDER
========================== */

.experience-slider {
    position: relative;

    width: 100%;

    overflow: hidden;
    border-radius: 12px;
}

.experience-track {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease;
}

.experience-slide {
    flex: 0 0 100%;
    max-width: 100%;
}

.experience-slide img {
    width: 100%;

    aspect-ratio: 12/7;

    object-fit: cover;

    display: block;
}

/* =========================
   SIDE ARROWS
========================== */

.experience-prev,
.experience-next {
    position: absolute;

    top: 50%;

    width: 48px;
    height: 48px;

    transform: translateY(-50%);

    z-index: 10;

    border: 0;

    background: transparent;

    cursor: pointer;
}

/* > 모양 */

.experience-prev::before,
.experience-next::before {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 18px;
    height: 18px;

    border-top: 3px solid rgba(255, 255, 255, 0.8);
    border-right: 3px solid rgba(255, 255, 255, 0.8);
}

/* 왼쪽 < */

.experience-prev {
    left: 20px;
}

.experience-prev::before {
    transform: translate(-50%, -50%) rotate(-135deg);
}

/* 오른쪽 > */

.experience-next {
    right: 20px;
}

.experience-next::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

/* HOVER */

.experience-prev:hover::before {
    transform: translate(-60%, -50%) rotate(-135deg);
}

.experience-next:hover::before {
    transform: translate(-40%, -50%) rotate(45deg);
}

.section-title {
    margin-bottom: 80px;

    text-align: center;
}

.section-title span {
    color: #7a2030;

    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
}

.section-title h2 {
    margin-top: 15px;

    font-family: "Montserrat", sans-serif;
}



.menu-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 35px;
}

.menu-item {
    overflow: hidden;
    border: 1px solid #ece7df;
    background: #fff;

    border-radius: 12px;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.menu-item:hover {
    transform: translateY(-10px);

    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.menu-image {
    position: relative;
}

.menu-image img {
    display: block;
    width: 100%;
}

.menu-badge {
    font-family: "Montserrat", sans-serif;
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;

    border: 2px solid #7a2030;

    color: #7a2030;

    padding: 8px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
}

.menu-badge_s {
    font-family: "Montserrat", sans-serif;
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;

    border: 2px solid #7a2030;
    background-color: #7a2030;
    color: #fff;

    padding: 8px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
}

.menu-item img {
    display: block;
    width: 100%;
}

.menu-item h3 {
    padding: 25px 25px 8px;

    font-family: "Montserrat", sans-serif;
    font-size: 23px;
    font-weight: 900;
}

.menu-item p {
    padding: 0 25px 12px;
        font-family: "Montserrat", sans-serif;
}

.bean-option {
    margin-bottom: 1px;
    font-family: "Montserrat", sans-serif;

    color: #666 !important;

    font-size: 15px;
}

.bean-option b {
    color: #7a2030;
}

.bean-option span {
    display: block;

    margin-top: 3px;
    color: #7a2030;

    font-size: 14px;
}

.menu-more {
    margin-top: 70px;

    text-align: center;
}

.menu-more button {
    padding: 18px 45px;

        font-family: "Montserrat", sans-serif;
    font-weight: 900;
    border: 1px solid #111;

    background: transparent;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.menu-more button:hover {
    color: #fff;

    background: #111;
}

.menu-more-list {
    max-height: 0;

    overflow: hidden;

    opacity: 0;

    transition:
        max-height 0.6s ease,
        opacity 0.4s ease;
}

.menu-more-list.open {
    max-height: 5000px;

    margin-top: 40px;

    opacity: 1;
}

.menu-more-list {
    display: none;
}

.menu-more-list.open {
    display: block;
}

/* 원두 리스트 */

.bean-list {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 24px;
}

.bean {
    border-top: 1px solid #e5ddd2;

    padding-top: 18px;
}

.bean-label {
    display: block;

    font-size: 0.72rem;

    letter-spacing: 2px;

    color: #8c2b2b;

    margin-bottom: 10px;
}

.bean h4 {
    font-size: 1.25rem;

    margin-bottom: 6px;
}

.bean p {
    color: #777;

    line-height: 1.7;
}


/* ==================================================
   BREW COFFEE
================================================== */

.brew-coffee {
    max-width:1500px;
    margin:0 auto;
    padding:0 1px;
}

.brew-container {
    width: 100%;
    margin: 0 auto;
}

.brew-section {
    margin-top: 100px;

    width:100%;


}

/* 
.brew-section::before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background: #f5f2ec;
    z-index: -1;
}

*/





/* ==================================================
   SELECT CARDS
================================================== */

.brew-select {

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;

    width: 100%;
    margin: 0 auto 60px;
}

/* ==================================================
   BREW CARD
================================================== */

.brew-card {
    display: grid;
    grid-template-columns: 55% 45%;

    background: #fff;
    border: 1px solid #e8e2d9;
    border-radius: 12px;

    overflow: hidden;
    cursor: pointer;

    transition: 0.35s ease;
}

.brew-card:hover {

    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.brew-card.active {
    border: 2px solid #8e343a;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* ==================================================
   IMAGE
================================================== */

.brew-image {
    height: 100%;
}

.brew-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;

    transition: 0.35s ease;
}

.brew-card:hover .brew-image img {
    transform: scale(1.05);
}

/* ==================================================
   CONTENT
================================================== */

.brew-content {
    padding: 36px 40px;
}

.brew-label {
    display: block;

    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 600;

    letter-spacing: 0.18em;
    color: #8e343a;

    margin-bottom: 2px;
}

.brew-content h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 35px;
    font-weight: 900;
    line-height: 45px;

    margin-bottom: 16px;
    color: #111;
}

.brew-flavor {
    font-family: "Montserrat", sans-serif;
    color: #8e343a;
      font-size: 14px;

    line-height: 1.7;
    margin-bottom: 16px;
}

.brew-desc {
    color: #666;
    line-height: 1.8;
}

/* ==================================================
   SELECTED BEAN
================================================== */

.brew-selected{

    display:flex;
    justify-content:center;

    margin:50px 0 60px;

}

.brew-selected p{

    display:flex;
    align-items:center;
    gap:10px;

    padding:14px 26px;

    border:1px solid #fff;

    border-radius:999px;

    background: #8E343A;

    font-size:15px;

    color:#fff;

}

.brew-selected strong{

    color:#fff;

    font-family:"Montserrat",sans-serif;

    font-weight:700;

}

/* ==================================================
   MENU GRID
================================================== */

.brew-menu{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;


}

.brew-menu.fade{

    opacity:0;

    transform:translateY(20px);

}

/* ==================================================
   ORIGIN CARD
================================================== */

.brew-origin{

    display:flex;
    flex-direction:column;

    height:100%;

    background:#fff;

    border:1px solid #ece7df;


    overflow:hidden;

    transition:.35s;

}

.brew-origin:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.brew-origin:hover .brew-origin-label{

    color:#8E343A;

}

.brew-origin:hover h3{

    color:#8E343A;

}

.brew-origin-image{

    width:100%;
    aspect-ratio:4/2;
}

.brew-origin-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:.4s;

}

.brew-origin:hover img{

    transform:scale(1.05);

}


.brew-origin-content{

    display:flex;

    flex-direction:column;

    justify-content:center;

    padding:50px;

}

.brew-origin-label {
    display: block;

    margin-bottom: 12px;

    font-size: 11px;

    letter-spacing: 0.18em;

    font-weight: 600;

    color: #8e343a;

    font-family: "Montserrat", sans-serif;
}

.brew-origin-content h3{

    font-size:40px;

    font-weight:700;

    font-family:"Montserrat",sans-serif;

    margin-bottom:8px;

}

.brew-origin-subtitle{

    font-size:18px;
    font-family:"Montserrat",sans-serif;
    font-weight:600;

    color:#8E343A;

    margin-bottom:24px;

}

.brew-origin-note{

    font-size:17px;

    color:#666;

    line-height:1.8;

    margin-bottom:22px;

    font-style:italic;

}


.brew-origin-desc{

    font-size:14px;

    color:#666;

    line-height:1.9;

    margin-bottom:40px;

}


.brew-origin-info{

    margin-top:auto;

    display:grid;

    gap:18px;

    padding-top:28px;

    border-top:1px solid #eee;

}

.brew-origin-info div{

    display:flex;

    align-items:center;

}

.brew-origin-info small{

    width:90px;

    font-size:11px;

    letter-spacing:.15em;

    color:#999;

}

.brew-origin-info strong{

    font-size:16px;

    font-family:"Montserrat",sans-serif;

}





/* ==================================================
   NEWS
================================================== */

.news {
    width: 100%;
    padding: 180px 40px;
    background: #f7f3ee;
}

.news-inner {
    max-width: 1500px;
    margin: 0 auto;
}

.news-list {
    margin-top: 60px;
    list-style: none;
    border-top: 1px solid #ddd;
    
}

.news-item {
    display: flex;
    align-items: center;

    padding: 28px 10px;

    border-bottom: 1px solid #ddd;

    cursor: pointer;
    transition: .3s ease;
}

.news-item:hover {
    background: rgba(0,0,0,.03);
}

.news-date {
    width: 140px;

    font-size: 15px;
    color: #888;
}

.news-title {
    flex: 1;

    font-size: 20px;
    font-weight: 500;
    color: #222;
}

.news-arrow {
    font-size: 22px;
    transition: .3s;
}

.news-item:hover .news-arrow {
    transform: translateX(8px);
}


/* ==================================================
   NEWS MODAL
================================================== */

.news-modal {
    position: fixed;
    inset: 0;

    display: none;
    justify-content: center;
    align-items: center;

    background: rgba(0,0,0,.8);

    z-index: 9999;
}

.news-modal.active {
    display: flex;
}

.news-modal-content {
    position: relative;
}

.news-modal-image {
    display: block;

    max-width: 90vw;
    max-height: 90vh;

    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,.3);
}

.news-close{
    position:absolute;
    top:16px;
    right:16px;

    width:44px;
    height:44px;

    border:0;
    border-radius:8px;

    background:rgba(0,0,0,.45);

    color:#fff;
    font-size:30px;
    line-height:44px;
    text-align:center;

    cursor:pointer;
    transition:.25s;
    z-index:100;
}

.news-close:hover{
    background:rgba(0,0,0,.65);
}



/* ==================================================
   INSTAGRAM
================================================== */

.instagram-section {
    width: 100%;
    padding: 160px 40px;
    background: #fffbf1;
}

.instagram-inner {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}

.instagram-section .section-title {
    margin-bottom: 60px;
}

.instagram-feed {
    width: 100%;
}

/* Instagram 링크 */

.instagram-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;

    width: fit-content;
    margin: 60px auto 0;
    padding: 16px 35px;

    border: 1px solid #7a2030;

    color: #7a2030;

    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.12em;

    transition: all 0.3s ease;
}

.instagram-link span {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.instagram-link:hover {
    background: #7a2030;
    color: #fff;
}

.instagram-link:hover span {
    transform: translateX(5px);
}


















/* ==================================================
   STORE
================================================== */

.store {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 80px;
    background: #fff;
    align-items: center;
}

.store-info h2 {
    margin-bottom: 40px;
    color: #8f2033;
    font-family: "Montserrat", sans-serif;
}

.store-info p {
    margin-bottom: 35px;
    font-family: "Montserrat", sans-serif;
}

.store-info p b {
    color: #8f2033;
    font-weight: bold;
}

.map {
    width: 100%;
    height: 500px;

    overflow: hidden;
    border-radius: 20px;
    background: #ddd;
}

.map iframe {
    width: 100%;
    height: 100%;

    border: 0;
}

/* ==================================================
   CONTACT
================================================== */

.contact {
    width: 100%;

    padding: 180px 20px;

    color: #fff;

    background: #111;
}

.contact-inner {
    width: min(1000px, 90%);

    margin: 0 auto;

    text-align: center;
}

.contact h2 {
    font-family: "Montserrat", sans-serif;
}

.contact-subtitle {
    color: rgba(255, 255, 255, 0.7);

    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 300;
}

.contact-line {
    display: block;

    width: 80px;
    height: 1px;

    margin: 60px auto;

    background: rgba(255, 255, 255, 0.3);
}

.contact-icons {
    display: flex;

    justify-content: center;

    gap: 90px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;

    color: #fff;
}

.contact-item i {
    width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;

    font-size: 28px;

    transition: 0.35s ease;
}

.contact-item span {
    margin-top: 18px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-item:hover i {
    transform: translateY(-6px);

    border-color: #6f1d2d;

    background: #6f1d2d;
}

/* ==================================================
   FOOTER
================================================== */

footer {
    padding: 70px;

    text-align: center;

    color: #999;

    background: #1c1c1c;
}

footer h3 {
    margin-bottom: 5px;

    color: #fff;

    font-family: "Montserrat", sans-serif;
    letter-spacing: 4px;
}

footer p {
    font-size: 15px;
}

/* ==================================================
   TABLET
================================================== */

@media (max-width: 1024px) {
    

    
    
    #header {
        padding: 20px 30px;
    }

    .menu-toggle {
        display: block;
    }

    #nav {
        position: fixed;
        top: 0;
        right: -100%;

        width: 280px;
        height: 100vh;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 30px;

        background: #000;

        transition: right 0.35s ease;
    }

    #nav.active {
        right: 0;
    }

    #nav a {
        color: #fff;

        font-size: 18px;
        font-weight: 600;
    }

    /* 작은 화면에서도 번역 위젯이 콘텐츠를 과하게 가리지 않게 배치합니다. */
    .translate-control {
        right: 14px;
        bottom: 14px;

        width: 120px;
        padding: 6px;
    }

    .journey {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .journey-intro {
        position: relative;
        top: auto;
    }

    .journey-grid {
        gap: 10px;
    }

    .origins {
        background-attachment: scroll;
    }

    .origins-container {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .origin-content {
        position: static;
    }

    .experience-zone {
        display: flex;

        flex-direction: column;

        gap: 35px;
    }

    .experience-text {
        padding: 20px 0;
    }

    .experience-text h3 {
        font-size: 40px;

        margin-bottom: 20px;
    }

    .experience-intro {
        font-size: 15px;
    }

    .experience-values {
        gap: 18px;
    }

    .experience-value {
        gap: 15px;

        padding-top: 16px;
    }

    .experience-value h4 {
        font-size: 13px;
    }

    .experience-value p {
        font-size: 14px;
    }

    .beans-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    
      .brew-select{

        grid-template-columns:repeat(2,1fr);

        gap:24px;

    }

    .brew-card{

        display:flex;
        flex-direction:column;

    }

    .brew-image{

        width:100%;
        aspect-ratio:4/3;

    }

    .brew-content{

        width:100%;
        padding:28px;

    }

    .brew-content h4{

        font-size:30px;

    }

    .brew-menu{

        grid-template-columns:repeat(2,1fr);

        gap:24px;

    }
    


    .store {
        grid-template-columns: 1fr;

        gap: 50px;
    }
}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 768px) {
    section {
        padding: 90px 6%;

    }

    p {
        font-size: 16px;
    }

    .hero {
        min-height: 650px;
    }

    .hero h1 {
        font-size: 48px;
        letter-spacing: 2px;
    }

    .hero p {
        font-size: 16px;
    }

    .journey {
        margin: 100px auto;
    }

  
    h2 {
        font-size: 42px;
    }

    .journey-content h3 {
        font-size: 28px;
    }

    
    .journey-content p{
        font-size: 14px;
    }
    .viewer-info {
        gap: 25px;
    }

    .info-item strong {
        font-size: 22px;
    }

    .story h2 {
        font-size: 42px;
    }

    .story p {
        font-size: 16px;
    }

    .slide-track img {
        width: 320px;
        height: 220px;
    }

    .origin-content h2 {
        font-size: 42px;
    }

    .origins-container {
        width: 95%;
    }

    .origin-navigation {
        bottom: 18px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .dot.active {
        width: 32px;
    }

    .experience-zone {
        display: flex;

        flex-direction: column;

        gap: 40px;

        margin-bottom: 70px;
    }

    .experience-text {
        width: 100%;

        padding: 0;
    }

    .experience-text h3 {
        font-size: 35px;

        margin-bottom: 20px;
    }

    .experience-intro {
        margin-bottom: 28px;

        font-size: 16px;

        line-height: 1.7;
    }

    .experience-values {
        gap: 18px;
    }

    .experience-value {
        gap: 16px;

        padding-top: 16px;
    }

    .experience-value h4 {
        font-size: 18px;
    }

    .experience-value p {
        font-size:16px;

        line-height: 1.6;
    }

    .experience-slider {
        width: 100%;
    }

    .beans-grid {
        grid-template-columns: repeat(2, fr);
        gap: 20px;
    }
    



    .beans-header {
    text-align: center;
    margin-bottom: 50px;
}
    .beans-section{
        margin: 50px auto;
        
    }
    
    


    .bean-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .bean-content {
        padding: 28px 24px;
    }

    .bean-content h3 {
        font-size: 36px;
    }



    .beans-header h3 {
        gap: 20px;
        font-size: 35px;
    }

    .beans-header h3::before,
    .beans-header h3::after {
        max-width: 70px;
    }
    
  .beans-contact {
    margin-top: 35px;
    padding-top: 30px;
  }

  .beans-contact-title {
    font-size: 16px;
    line-height: 1.5;
  }

  .beans-contact-desc {
    font-size: 13px;
    line-height: 1.7;
  }

  .beans-contact-btn {
    margin-top: 18px;
    padding: 12px 22px;
  }


    .bean-flavor{font-size: 11px; }
    .bean-desc{font-size: 13px; }
    .brew-flavor{ font-size: 11px;}
    .brew-desc{ font-size: 13px;}

    .menu-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 16px;
    }

    .menu-item {
        width: 100%;
    }

    .menu-item h3 {
        font-size: 20px;
    }
    .menu-item p {
        font-size: 13px;
        padding: 0 25px 10px;
    }

    .menu-item img {
        width: 100%;
        height: auto;
        display: block;
    }

    .menu-badge {
        font-size: 12px;
    }
    
       .menu-badge_s {
        font-size: 12px;
    }
    
    .brew-origin-note{font-size: 15px;}
    
    
    .brew-origin-desc{font-size: 13px;}
    
    .brew-content{

        padding:22px;

    }

    .brew-content h4{

        font-size:25px;

    }

    .brew-origin-content{

        padding:24px;

    }
    .brew-origin-info {
        gap: 5px;

    }
    
    .brew-origin-info strong{
                font-size: 13px;
    }

    .brew-origin-content h3{

        font-size:25px;

    }
    
    .brew-origin-desc {
        margin-bottom: 20px;
    }
    


    
    .instagram-section {
        padding: 90px 6%;
    }

    .instagram-section .section-title {
        margin-bottom: 40px;
    }

    .instagram-link {
        margin-top: 40px;
        padding: 13px 25px;
        font-size: 11px;
    }

    

    .news-date{
        width: 100px;
    }
    
    .news-title {
    
        font-size: 16px;
    }


    .contact {
        padding: 120px 20px;
    }

    .contact h2 {
        font-size: 42px;
    }

    .contact-icons {
        gap: 50px;
    }
}

/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 480px) {
    .h2 {
        font-size: 42px;
    }
    .logo {
        width: 120px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-text > span {
        font-size: 12px;
        letter-spacing: 4px;
    }


    .story p{
    font-size:15px;
    }


    .btn {
        padding: 14px 30px;
    }

    .journey-intro h2 {
        font-size: 38px;
    }



    .journey{
    padding:0 20px;
    margin:80px auto;
}

.journey-grid{
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.journey-content h3{
    font-size:32px;
}

.journey-content span{
    font-size:15px;
}


    .journey-intro p{
    font-size:15px;
}

    .viewer-content h2 {
        font-size: 34px;
    }

    .viewer-info {
        gap: 15px;
    }

    .info-item strong {
        font-size: 20px;
    }

    .info-item span {
        font-size: 12px;
    }

    .experience-zone {
        gap: 30px;
    }

    .experience-text h3 {
        font-size: 28px;
    }

    .experience-intro {
        font-size: 15px;
    }

    .experience-value {
        gap: 12px;
    }

    .experience-value > span {
        font-size: 10px;
    }

    .experience-value h4 {
        font-size: 13px;
    }

    .experience-value p {
        font-size: 13px;
    }

    .experience-prev,
    .experience-next {
        width: 40px;

        height: 40px;
    }

    .experience-prev {
        left: 10px;
    }

    .experience-next {
        right: 10px;
    }

    .experience-prev::before,
    .experience-next::before {
        width: 14px;

        height: 14px;

        border-width: 2px;
    }

    .origin-content h2 {
        font-size: 34px;
    }
    
    
       .brew-select{

        grid-template-columns:1fr;

    }

    .brew-menu{

        grid-template-columns:1fr;

    }
    

    .beans-header h3{
    font-size:28px;
}

.beans-header p{
    font-size:14px;
}


    .menu-badge{
    font-size:10px;
}

.menu-badge_s{
    font-size:10px;
}


    .section-title h2 {
        font-size: 38px;
    }

    .store-info h2 {
        font-size: 38px;
    }

    .contact h2 {
        font-size: 38px;
    }

    .contact-icons {
        gap: 30px;
    }

    footer {
        padding: 50px 20px;
    }
}


