  :root {
    --ink: #1e3a5f;
    --ink-2: #0f2340;
    --sub: #5a6c7d;
    --muted: #8a9baa;
    --bg: #f4f1ea;
    --paper: #fdfbf6;
    --card: #ffffff;
    --line: rgba(30,58,95,0.15);
    --brand: #287dfa;
    --brand-dark: #1a5cc4;
    --mint: #28d5a7;
    --accent: #5a7a5f;
    --gold: #b89253;
    --danger: #d94f4f;
  }

  body { background: var(--paper); font-size: 15px; }

  /* ============== TOP UTILITY BAR ============== */
  .utility {
    background: var(--ink-2);
    color: #cddbe8;
    font-size: 12px;
  }
  .utility .row {
    max-width: 1240px; margin: 0 auto; padding: 8px 32px;
    display: flex; justify-content: space-between; align-items: center;
  }
  .utility a { color: #cddbe8; margin-left: 20px; letter-spacing: 0.5px; }
  .utility a:hover { color: #fff; }
  .utility .tel { color: var(--mint); font-weight: 600; letter-spacing: 1px; }

  /* ============== HEADER ============== */
  header.site {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    position: sticky; top: 0; z-index: 100;
  }
  .site-inner {
    max-width: 1240px; margin: 0 auto; padding: 18px 32px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .logo img { height: 60px; width: auto; }
  nav.primary ul { display: flex; gap: 38px; }
  nav.primary a {
    font-size: 15px; font-weight: 500;
    padding: 8px 0; position: relative;
    letter-spacing: 0.5px;
  }
  nav.primary a:hover { color: var(--brand); }
  nav.primary a.active::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: -22px; height: 3px; background: var(--brand);
  }
  .site-cta {
    display: flex; gap: 10px; align-items: center;
  }
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 20px;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all .2s;
    border: 1px solid transparent;
    white-space: nowrap;
  }
  .btn-primary { background: var(--brand); color: #fff; }
  .btn-primary:hover { background: var(--brand-dark); }
  .btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
  .btn-ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
  .btn-mint { background: var(--mint); color: #063d2b; }
  .btn-mint:hover { background: #1cbf94; }

  /* ============== HERO ============== */
  .hero {
    position: relative;
    height: 620px;
    color: #fff;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: url('/static/images/tsushima-nature.jpg') center/cover no-repeat;
    overflow: hidden;
  }
  .hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background:
      linear-gradient(180deg, rgba(15,35,64,0.55) 0%, rgba(15,35,64,0.75) 100%),
      linear-gradient(90deg, rgba(15,35,64,0.6) 0%, transparent 60%);
  }
  .hero-content {
    position: relative;
    max-width: 1240px; margin: 0 auto; padding: 100px 32px 0;
    z-index: 2;
  }
  .hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px;
    background: rgba(40,213,167,0.15);
    border: 1px solid rgba(40,213,167,0.4);
    color: var(--mint);
    font-size: 12px; letter-spacing: 2px; font-weight: 600;
    border-radius: 2px;
    margin-bottom: 28px;
  }
  .hero-tag::before { content: ''; width: 6px; height: 6px; background: var(--mint); border-radius: 50%; }
  .hero h1 {
    font-family: 'Playfair Display', 'Noto Sans KR', serif;
    font-size: 68px; font-weight: 700; line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
  }
  .hero h1 em {
    font-style: italic; color: var(--mint); font-weight: 800;
  }
  .hero .lede {
    font-size: 18px; line-height: 1.7; max-width: 560px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
  }
  .hero-actions { display: flex; gap: 12px; }
  .hero-actions .btn { padding: 14px 28px; font-size: 14px; }

  /* Hero search bar */
  .search-bar {
    position: absolute;
    left: 50%; transform: translateX(-50%);
    bottom: -48px;
    width: min(1176px, calc(100% - 64px));
    background: #fff;
    box-shadow: 0 24px 60px rgba(15,35,64,0.18), 0 2px 6px rgba(15,35,64,0.06);
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr auto;
    align-items: stretch;
    z-index: 5;
    border-radius: 2px;
    overflow: hidden;
  }

  .search-field {
    padding: 18px 22px;
    border-right: 1px solid var(--line);
    display: flex; flex-direction: column; gap: 4px;
  }
  .search-field:last-of-type { border-right: none; }
  .search-field label { font-size: 11px; font-weight: 600; color: var(--muted); letter-spacing: 1.5px; }
  .search-field .val { font-size: 15px; font-weight: 600; color: var(--ink); }
  .search-field .val small { color: var(--muted); font-weight: 400; }
  .search-btn {
    background: var(--brand); color: #fff;
    padding: 0 40px;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    font-weight: 700; font-size: 14px; letter-spacing: 1px;
    cursor: pointer;
  }
  .search-btn:hover { background: var(--brand-dark); }

  /* ============== SECTION TITLE ============== */
  section { padding: 100px 0; }
  .container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
  .section-head { text-align: center; margin-bottom: 56px; }
  .section-head .k {
    display: inline-block;
    font-size: 12px; letter-spacing: 4px; color: var(--brand);
    font-weight: 700; margin-bottom: 16px;
  }
  .section-head h2 {
    font-family: 'Playfair Display', 'Noto Sans KR', serif;
    font-size: 44px; font-weight: 700; line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
  }
  .section-head .sub {
    color: var(--sub); font-size: 16px;
  }

  /* ============== POPULAR PRODUCTS ============== */
  .popular-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .product-card {
    background: var(--card);
    border-radius: 3px;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
    box-shadow: 0 2px 12px rgba(15,35,64,0.05);
    display: flex; flex-direction: column;
  }
  .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(15,35,64,0.14);
  }
  .product-card.featured {
    grid-column: span 2;
    grid-row: span 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
  }
  .product-thumb {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #e8e2d5;
  }
  .product-card.featured .product-thumb {
    aspect-ratio: auto; height: 100%;
  }
  .product-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
  .product-card:hover .product-thumb img { transform: scale(1.06); }
  .badge {
    position: absolute; top: 16px; left: 16px;
    padding: 6px 12px;
    background: var(--ink);
    color: #fff;
    font-size: 11px; letter-spacing: 1px; font-weight: 600;
    border-radius: 2px;
  }
  .badge.hot { background: var(--danger); }
  .badge.new { background: var(--mint); color: #063d2b; }
  .product-info { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
  .product-region {
    font-size: 11px;
    letter-spacing: 2.5px;
    color: var(--brand);
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
  }
  .product-name {
    font-family: 'Playfair Display', 'Noto Sans KR', serif;
    font-size: 22px; font-weight: 700;
    line-height: 1.35; color: var(--ink);
    margin-bottom: 12px;
  }
  .product-card.featured .product-name { font-size: 28px; }
  .product-desc {
    font-size: 13.5px; color: var(--sub); line-height: 1.7;
    margin-bottom: 18px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  }
  .product-meta {
    display: flex; gap: 14px; padding: 14px 0;
    border-top: 1px solid var(--line);
    font-size: 12px; color: var(--sub);
    margin-top: auto;
  }
  .product-meta span { display: inline-flex; align-items: center; gap: 5px; }
  .product-meta svg { width: 14px; height: 14px; opacity: 0.6; }
  .price-row {
    display: flex; align-items: baseline; justify-content: space-between;
    padding-top: 14px; border-top: 1px solid var(--line);
  }
  .price-row .from { font-size: 11px; color: var(--muted); letter-spacing: 1px; margin-right: 6px; }
  .price-row .price { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--ink); }
  .price-row .price small { font-size: 13px; font-weight: 400; color: var(--sub); margin-left: 2px; }
  .price-row .book-arrow {
    color: var(--brand); font-size: 13px; font-weight: 600;
    display: inline-flex; align-items: center; gap: 4px;
  }

  /* ============== PROMOTIONS ============== */
  .promo-section { background: linear-gradient(180deg, #0f2340 0%, #1e3a5f 100%); color: #fff; }
  .promo-section .section-head h2 { color: #fff; }
  .promo-section .section-head .k { color: var(--mint); }
  .promo-section .section-head .sub { color: rgba(255,255,255,0.7); }

  .promo-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 24px; }
  .promo-card {
    position: relative;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 36px 32px;
    overflow: hidden;
    min-height: 260px;
    display: flex; flex-direction: column; justify-content: space-between;
    transition: all .3s;
  }
  .promo-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(40,213,167,0.5); }
  .promo-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--mint); color: #063d2b;
    font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
    border-radius: 2px;
    margin-bottom: 20px;
    align-self: flex-start;
  }
  .promo-tag.gold { background: var(--gold); color: #3d2b0d; }
  .promo-card h3 {
    font-family: 'Playfair Display', 'Noto Sans KR', serif;
    font-size: 24px; font-weight: 700; line-height: 1.3;
    margin-bottom: 12px;
  }
  .promo-card.big h3 { font-size: 34px; }
  .promo-card p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 24px; }
  .promo-bottom { display: flex; justify-content: space-between; align-items: flex-end; }
  .promo-price { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--mint); }
  .promo-price .old { font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.5); text-decoration: line-through; margin-right: 8px; }
  .promo-btn {
    padding: 10px 18px; border: 1px solid rgba(255,255,255,0.3); font-size: 12px; letter-spacing: 1px; color: #fff;
    border-radius: 2px; transition: all .2s;
  }
  .promo-btn:hover { background: var(--mint); border-color: var(--mint); color: #063d2b; }
  .promo-card.big { grid-row: span 2; background-image: url('/static/images/tsushima-scenic.jpg'); background-size: cover; background-position: center; }
  .promo-card.big::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(15,35,64,0.85), rgba(15,35,64,0.6));
  }
  .promo-card.big > * { position: relative; z-index: 1; }

  /* ============== NOTICE + CONTACT ============== */
  .info-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; }

  .notice-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 28px; }
  .notice-head h3 {
    font-family: 'Playfair Display', 'Noto Sans KR', serif;
    font-size: 32px; font-weight: 700;
  }
  .notice-tabs { display: flex; gap: 24px; }
  .notice-tabs button {
    font-size: 13px; font-weight: 600; letter-spacing: 1px;
    color: var(--muted); padding: 8px 0; border-bottom: 2px solid transparent;
  }
  .notice-tabs button.active { color: var(--ink); border-bottom-color: var(--brand); }
  .notice-list li {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    align-items: center;
    padding: 18px 4px;
    border-bottom: 1px solid var(--line);
    transition: background .2s;
  }
  .notice-list li:hover { background: rgba(40,125,250,0.03); }
  .notice-list .cat {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(40,125,250,0.1); color: var(--brand);
    font-size: 10.5px; font-weight: 700; letter-spacing: 0.5px;
    border-radius: 2px; text-align: center;
  }
  .notice-list .cat.event { background: rgba(40,213,167,0.15); color: #0d8a63; }
  .notice-list .cat.notice { background: rgba(30,58,95,0.08); color: var(--ink); }
  .notice-list .title { font-size: 14.5px; font-weight: 500; padding: 0 20px; color: var(--ink); }
  .notice-list .title .new { color: var(--danger); font-size: 10px; margin-left: 6px; vertical-align: top; }
  .notice-list .date { font-size: 12px; color: var(--muted); font-family: ui-monospace, monospace; }
  .notice-more {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 24px; font-size: 13px; color: var(--brand); font-weight: 600;
  }

  /* ============== NOTICE POPUP MODAL ============== */
  .notice-popup-overlay {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(15,35,64,0.55);
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 0; visibility: hidden;
    transition: opacity .25s ease;
  }
  .notice-popup-overlay.is-open { opacity: 1; visibility: visible; }
  .notice-popup {
    width: 100%; max-width: 420px;
    background: var(--paper);
    border-radius: 18px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.35);
    overflow: hidden;
    transform: translateY(24px) scale(0.97);
    opacity: 0;
    transition: transform .32s cubic-bezier(.22,1,.36,1), opacity .32s ease;
  }
  .notice-popup-overlay.is-open .notice-popup { transform: translateY(0) scale(1); opacity: 1; }
  .notice-popup-top {
    background: linear-gradient(135deg, var(--ink-2), var(--ink));
    padding: 26px 26px 22px;
    position: relative;
  }
  .notice-popup-close {
    position: absolute; top: 14px; right: 14px;
    width: 30px; height: 30px; border-radius: 50%;
    background: rgba(255,255,255,0.12); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 15px; transition: background .15s;
  }
  .notice-popup-close:hover { background: rgba(255,255,255,0.24); }
  .notice-popup-cat {
    display: inline-block; padding: 4px 11px; border-radius: 3px;
    font-size: 10.5px; font-weight: 700; letter-spacing: 0.5px;
    background: rgba(255,255,255,0.14); color: #fff; margin-bottom: 12px;
  }
  .notice-popup-cat.event { background: rgba(40,213,167,0.9); color: #063d2b; }
  .notice-popup-cat.notice { background: var(--gold); color: #fff; }
  .notice-popup-title {
    font-family: 'Playfair Display', 'Noto Sans KR', serif;
    font-size: 21px; font-weight: 700; color: #fff; line-height: 1.4; margin: 0;
  }
  .notice-popup-date {
    margin-top: 10px; font-size: 12px; color: rgba(255,255,255,0.6);
    font-family: ui-monospace, monospace; letter-spacing: 0.5px;
  }
  .notice-popup-body {
    padding: 26px; max-height: 260px; overflow-y: auto;
    font-size: 14.5px; line-height: 1.75; color: var(--ink);
    white-space: pre-wrap; word-break: break-word;
  }
  .notice-popup-bottom {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 22px; border-top: 1px solid var(--line);
    background: rgba(30,58,95,0.02);
  }
  .notice-popup-hide {
    display: flex; align-items: center; gap: 7px;
    font-size: 13px; color: var(--sub, var(--muted)); cursor: pointer; user-select: none;
  }
  .notice-popup-hide input { width: 15px; height: 15px; accent-color: var(--brand); cursor: pointer; }
  .notice-popup-ok {
    padding: 9px 22px; border-radius: 7px; border: none; cursor: pointer;
    background: var(--brand); color: #fff; font-weight: 700; font-size: 13.5px;
    transition: background .15s;
  }
  .notice-popup-ok:hover { background: var(--brand-dark); }
  @media (max-width: 480px) {
    .notice-popup { max-width: 100%; }
    .notice-popup-top { padding: 22px 20px 18px; }
    .notice-popup-title { font-size: 18px; }
    .notice-popup-body { padding: 20px; }
  }

  .contact-card {
    background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
    color: #fff;
    padding: 40px 36px;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
  }
  .contact-card::before {
    content: ''; position: absolute; top: -80px; right: -60px;
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(40,213,167,0.25), transparent 70%);
  }
  .contact-card .k { font-size: 12px; letter-spacing: 3px; color: var(--mint); font-weight: 700; margin-bottom: 16px; }
  .contact-card h3 {
    font-family: 'Playfair Display', 'Noto Sans KR', serif;
    font-size: 28px; font-weight: 700; line-height: 1.3; margin-bottom: 12px;
  }
  .contact-card p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 28px; }
  .tel-box {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.15);
    margin-bottom: 24px;
  }
  .tel-box .lbl { font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: 1.5px; margin-bottom: 6px; }
  .tel-box .num {
    font-family: 'Playfair Display', serif;
    font-size: 32px; font-weight: 700; color: #fff;
    letter-spacing: 0.5px;
  }
  .tel-box .hours { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 6px; }
  .contact-actions { display: flex; gap: 8px; }
  .contact-actions .btn { flex: 1; justify-content: center; padding: 13px; }

  /* ============== FEATURES / WHY ============== */
  .features { background: var(--bg); }
  .features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
  .feature {
    text-align: center;
    padding: 20px;
  }
  .feature-icon {
    width: 68px; height: 68px; margin: 0 auto 20px;
    background: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--brand);
    box-shadow: 0 4px 12px rgba(30,58,95,0.08);
  }
  .feature-icon svg { width: 28px; height: 28px; stroke-width: 1.5; }
  .feature h4 {
    font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--ink);
  }
  .feature p { font-size: 13px; color: var(--sub); line-height: 1.7; }

  /* ============== FOOTER ============== */
  footer.site {
    background: var(--ink-2); color: rgba(255,255,255,0.6);
    padding: 64px 0 32px;
    font-size: 13px;
  }
  .foot-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .foot-brand img { height: 76px; width: auto; margin-bottom: 18px; }
  .foot-brand p { line-height: 1.8; max-width: 340px; }
  .foot-col h5 { color: #fff; font-size: 14px; letter-spacing: 1px; margin-bottom: 18px; }
  .foot-col ul li { padding: 5px 0; }
  .foot-col a:hover { color: var(--mint); }
  .foot-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 24px; font-size: 12px; color: rgba(255,255,255,0.35);
  }
  .foot-bottom .biz { line-height: 1.7; }
  .foot-social { display: flex; gap: 10px; }
  .foot-social a {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.2); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: all .2s;
  }
  .foot-social a:hover { background: var(--mint); border-color: var(--mint); color: #063d2b; }
  .foot-social svg { width: 16px; height: 16px; }

  /* Floating chat button */
  .float-chat {
    position: fixed; bottom: 30px; right: 30px;
    background: var(--brand); color: #fff;
    padding: 14px 22px;
    border-radius: 40px;
    box-shadow: 0 8px 24px rgba(40,125,250,0.4);
    display: flex; align-items: center; gap: 10px;
    font-weight: 700; font-size: 14px;
    z-index: 50;
    cursor: pointer;
    transition: transform .2s;
  }
  .float-chat:hover { transform: translateY(-2px); }

  @media (max-width: 960px) {
    .hero h1 { font-size: 42px; }
    .search-bar { grid-template-columns: 1fr 1fr; }
    .search-btn { grid-column: span 2; padding: 16px; }
    nav.primary { display: none; }
    .popular-grid { grid-template-columns: 1fr; }
    .product-card.featured { grid-column: span 1; grid-row: span 1; grid-template-columns: 1fr; }
    .promo-grid, .info-grid, .features-grid, .foot-top { grid-template-columns: 1fr; }
    .promo-card.big { grid-row: auto; min-height: 340px; }
    section { padding: 60px 0; }
  }
