<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>오그림 투어 — VENICE BIENNALE 2026</title>
<link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Noto+Sans+KR:wght@300;400;500&display=swap" rel="stylesheet">
<style>
:root {
--bg: #ffffff;
--bg2: #f6f4f0;
--bg3: #f0ede8;
--line: #c8c4bc;
--accent: #b8874a;
--accent2: #7a5420;
--text: #111008;
--text-muted: #444038;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
background: var(--bg);
color: var(--text);
font-family: 'Noto Sans KR', sans-serif;
font-weight: 300;
line-height: 1.8;
}
/* HEADER */
header {
padding: 40px 40px 28px;
border-bottom: 1px solid var(--line);
display: flex;
align-items: center;
justify-content: space-between;
}
.logo {
font-family: 'Cormorant Garamond', serif;
font-size: 22px;
font-weight: 400;
letter-spacing: 0.12em;
color: var(--accent);
text-decoration: none;
}
.logo span {
color: var(--text-muted);
font-weight: 300;
font-size: 12px;
letter-spacing: 0.2em;
display: block;
text-transform: uppercase;
}
/* HERO */
.hero {
padding: 80px 40px 64px;
border-bottom: 1px solid var(--line);
position: relative;
overflow: hidden;
}
.hero::before {
content: 'VENEZIA';
position: absolute;
right: -20px;
top: 20px;
font-family: 'Cormorant Garamond', serif;
font-size: 180px;
font-weight: 300;
color: rgba(184, 135, 74, 0.07);
letter-spacing: -0.02em;
pointer-events: none;
white-space: nowrap;
}
.hero-label {
font-size: 11px;
letter-spacing: 0.3em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 24px;
}
.hero h1 {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(48px, 8vw, 96px);
font-weight: 300;
line-height: 1.0;
letter-spacing: -0.01em;
color: var(--text);
margin-bottom: 16px;
}
.hero h1 em {
font-style: italic;
color: var(--accent);
}
.hero-sub {
font-family: 'Cormorant Garamond', serif;
font-size: 20px;
font-style: italic;
color: var(--text-muted);
margin-bottom: 40px;
}
.hero-meta {
display: flex;
gap: 40px;
flex-wrap: wrap;
}
.hero-meta-item {
display: flex;
flex-direction: column;
gap: 4px;
}
.hero-meta-item .label {
font-size: 10px;
letter-spacing: 0.25em;
text-transform: uppercase;
color: var(--text-muted);
}
.hero-meta-item .value {
font-family: 'Cormorant Garamond', serif;
font-size: 18px;
color: var(--accent2);
}
/* PRICE */
.price-section {
padding: 48px 40px;
border-bottom: 1px solid var(--line);
background: var(--bg2);
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 24px;
}
.price-main { display: flex; flex-direction: column; gap: 6px; }
.price-label {
font-size: 11px;
letter-spacing: 0.25em;
text-transform: uppercase;
color: var(--text-muted);
}
.price-amount {
font-family: 'Cormorant Garamond', serif;
font-size: 52px;
font-weight: 300;
color: var(--accent);
line-height: 1;
}
.price-amount span { font-size: 22px; color: var(--text-muted); }
.price-includes { display: flex; flex-direction: column; gap: 8px; }
.price-tag {
display: inline-flex;
align-items: center;
gap: 8px;
font-size: 13px;
color: var(--text-muted);
}
.price-tag::before {
content: '';
width: 20px;
height: 1px;
background: var(--accent);
display: inline-block;
}
.price-tag.included { color: var(--text); }
.price-tag.excluded {
color: #aaa;
text-decoration: line-through;
text-decoration-color: #ccc;
}
/* STORY */
.story {
padding: 64px 40px;
border-bottom: 1px solid var(--line);
}
.story h2 {
font-family: 'Cormorant Garamond', serif;
font-size: 13px;
font-weight: 400;
letter-spacing: 0.25em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 28px;
}
.story-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 48px;
}
.story-text p {
font-size: 15px;
color: var(--text-muted);
line-height: 2;
margin-bottom: 16px;
}
.story-text p strong {
color: var(--text);
font-weight: 500;
}
/* WHY OHGRIM */
.why-section {
padding: 64px 40px;
border-bottom: 1px solid var(--line);
background: var(--bg2);
}
.why-section h2 {
font-family: 'Cormorant Garamond', serif;
font-size: 13px;
font-weight: 400;
letter-spacing: 0.25em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 48px;
}
.why-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 0;
}
.why-item {
padding: 32px 36px 32px 0;
border-right: 1px solid var(--line);
padding-right: 36px;
}
.why-item:last-child {
border-right: none;
padding-right: 0;
padding-left: 36px;
}
.why-item:nth-child(2) {
padding-left: 36px;
}
.why-num {
font-family: 'Cormorant Garamond', serif;
font-size: 40px;
font-weight: 300;
color: var(--accent);
opacity: 0.4;
line-height: 1;
margin-bottom: 16px;
}
.why-title {
font-size: 15px;
font-weight: 500;
color: var(--text);
margin-bottom: 10px;
letter-spacing: 0.02em;
}
.why-desc {
font-size: 13px;
color: var(--text-muted);
line-height: 1.9;
}
/* BIENNALE INFO */
.biennale-section {
padding: 64px 40px;
border-bottom: 1px solid var(--line);
}
.biennale-section h2 {
font-family: 'Cormorant Garamond', serif;
font-size: 13px;
font-weight: 400;
letter-spacing: 0.25em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 48px;
}
.biennale-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 48px;
}
.biennale-block {}
.biennale-block-title {
font-family: 'Cormorant Garamond', serif;
font-size: 22px;
font-weight: 400;
color: var(--text);
margin-bottom: 16px;
padding-bottom: 16px;
border-bottom: 1px solid var(--line);
}
.biennale-block p {
font-size: 14px;
color: var(--text-muted);
line-height: 1.9;
margin-bottom: 12px;
}
.biennale-block p strong {
color: var(--text);
font-weight: 500;
}
.info-row {
display: flex;
gap: 16px;
padding: 10px 0;
border-bottom: 1px solid var(--bg3);
font-size: 13px;
}
.info-row .info-label {
color: var(--text-muted);
min-width: 80px;
flex-shrink: 0;
font-size: 11px;
letter-spacing: 0.1em;
text-transform: uppercase;
padding-top: 2px;
}
.info-row .info-val {
color: var(--text);
}
/* SCHEDULE */
.schedule-section {
padding: 0 40px 80px;
}
.schedule-header {
padding: 64px 0 40px;
border-bottom: 2px solid var(--text);
}
.schedule-header h2 {
font-family: 'Cormorant Garamond', serif;
font-size: 13px;
letter-spacing: 0.25em;
text-transform: uppercase;
color: var(--accent);
}
/* DAY BLOCK */
.day-block {
border-bottom: 1px solid var(--line);
border-top: 2px solid var(--bg3);
display: grid;
grid-template-columns: 220px 1fr;
margin-top: 2px;
}
.day-left {
padding: 36px 32px 36px 0;
border-right: 4px solid var(--accent);
display: flex;
flex-direction: column;
gap: 2px;
background: var(--bg2);
}
.day-number {
font-family: 'Cormorant Garamond', serif;
font-size: 56px;
font-weight: 300;
letter-spacing: -0.02em;
color: var(--text);
line-height: 1;
margin-bottom: 8px;
}
.day-date {
font-size: 12px;
font-weight: 400;
color: var(--text-muted);
letter-spacing: 0.08em;
}
.day-weekday {
font-size: 11px;
letter-spacing: 0.1em;
color: var(--text-muted);
}
.day-city {
margin-top: 12px;
font-size: 10px;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--accent);
font-weight: 400;
}
.day-tag {
display: inline-block;
margin-top: 12px;
padding: 3px 10px;
font-size: 10px;
letter-spacing: 0.12em;
text-transform: uppercase;
background: var(--accent);
color: #fff;
align-self: flex-start;
}
.day-right {
padding: 40px 0 40px 40px;
display: flex;
flex-direction: column;
}
.day-title {
font-family: 'Cormorant Garamond', serif;
font-size: 24px;
font-weight: 400;
color: var(--text);
margin-bottom: 24px;
letter-spacing: 0.02em;
}
.item {
display: flex;
align-items: flex-start;
gap: 14px;
padding: 7px 0;
font-size: 14px;
color: var(--text-muted);
line-height: 1.6;
}
.item::before {
content: '—';
color: var(--line);
flex-shrink: 0;
}
.item.highlight { color: var(--text); }
.item.exhibition { color: var(--text); }
.item.exhibition strong { color: var(--text); font-weight: 500; }
.item.exhibition .venue { color: var(--text-muted); font-size: 12px; }
.item.transport { color: var(--accent2); font-size: 13px; }
.item.transport::before { content: '✈'; font-size: 11px; }
.item.train::before { content: '🚄'; font-size: 11px; }
.item.dinner::before { content: '🍽'; font-size: 11px; }
.item.dinner { color: var(--text-muted); }
.badge.classic {
display: inline-block;
padding: 2px 8px;
font-size: 10px;
letter-spacing: 0.1em;
border: 1px solid var(--accent);
color: var(--accent);
margin-left: 8px;
vertical-align: middle;
text-transform: uppercase;
}
.badge.biennale {
display: inline-block;
padding: 2px 8px;
font-size: 10px;
letter-spacing: 0.1em;
border: 1px solid #4a7c59;
color: #4a7c59;
margin-left: 8px;
vertical-align: middle;
}
.section-divider {
padding: 14px 0 2px;
font-size: 10px;
letter-spacing: 0.25em;
text-transform: uppercase;
color: var(--accent);
opacity: 0.7;
}
/* FOOTER */
footer {
padding: 48px 40px;
border-top: 1px solid var(--line);
display: flex;
justify-content: space-between;
align-items: flex-end;
flex-wrap: wrap;
gap: 24px;
background: var(--bg2);
}
footer .footer-brand {
font-family: 'Cormorant Garamond', serif;
font-size: 20px;
color: var(--accent);
margin-bottom: 8px;
}
footer p { font-size: 12px; color: var(--text-muted); line-height: 1.8; }
/* RESPONSIVE */
@media (max-width: 768px) {
header, .hero, .price-section, .story, .why-section,
.biennale-section, .schedule-section { padding-left: 24px; padding-right: 24px; }
.story-grid, .why-grid, .biennale-grid { grid-template-columns: 1fr; gap: 32px; }
.why-item, .why-item:nth-child(2), .why-item:last-child {
border-right: none; border-bottom: 1px solid var(--line);
padding: 24px 0; padding-left: 0;
}
.day-block { grid-template-columns: 1fr; }
.day-left { border-right: none; border-bottom: 3px solid var(--accent); padding: 24px 0 20px; }
.day-right { padding: 20px 0 28px; }
.hero::before { font-size: 72px; }
.price-amount { font-size: 40px; }
footer { padding: 32px 24px; }
}
/* PHOTO SECTION */
.photo-section {
padding: 64px 40px;
border-bottom: 1px solid var(--line);
}
.photo-section h2 {
font-family: 'Cormorant Garamond', serif;
font-size: 13px;
font-weight: 400;
letter-spacing: 0.25em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 32px;
}
.photo-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(3, 220px);
gap: 8px;
}
.photo-placeholder {
background: var(--bg3);
border: 1px dashed var(--line);
display: flex;
align-items: center;
justify-content: center;
}
.photo-placeholder span {
font-size: 11px;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--line);
}
/* DINING SECTION */
.dining-section {
padding: 64px 40px;
border-bottom: 1px solid var(--line);
background: var(--bg2);
}
.dining-section h2 {
font-family: 'Cormorant Garamond', serif;
font-size: 13px;
font-weight: 400;
letter-spacing: 0.25em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 24px;
}
.dining-intro {
max-width: 640px;
margin-bottom: 40px;
}
.dining-intro p {
font-size: 15px;
color: var(--text-muted);
line-height: 2;
}
.dining-intro p strong { color: var(--text); font-weight: 500; }
.dining-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}
.dining-item {
display: flex;
flex-direction: column;
gap: 0;
border: 1px solid var(--line);
overflow: hidden;
}
.dining-photo-placeholder {
height: 180px;
background: var(--bg3);
border-bottom: 1px dashed var(--line);
display: flex;
align-items: center;
justify-content: center;
}
.dining-photo-placeholder span {
font-size: 10px;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--line);
}
.dining-info {
padding: 20px;
display: flex;
flex-direction: column;
gap: 6px;
}
.dining-day {
font-size: 10px;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--accent);
}
.dining-name {
font-family: 'Cormorant Garamond', serif;
font-size: 18px;
color: var(--text);
}
.dining-desc {
font-size: 12px;
color: var(--text-muted);
line-height: 1.7;
}
from { opacity: 0; transform: translateY(12px); }
to { opacity: 1; transform: translateY(0); }
}
.hero-label { animation: fadeUp 0.6s ease forwards; }
.hero h1 { animation: fadeUp 0.6s ease 0.1s forwards; opacity: 0; }
.hero-sub { animation: fadeUp 0.6s ease 0.2s forwards; opacity: 0; }
.hero-meta { animation: fadeUp 0.6s ease 0.3s forwards; opacity: 0; }
</style>
</head>
<body>
<!-- HEADER -->
<header>
<a href="#" class="logo">
OHGRIM
<span>Art Tour</span>
</a>
<div style="font-size:11px; letter-spacing:0.2em; color:var(--text-muted); text-transform:uppercase;">
Venice Biennale 2026
</div>
</header>
<!-- TAGLINE BANNER -->
<div style="background:var(--accent); padding:12px 40px; display:flex; align-items:center; justify-content:center; gap:16px;">
<span style="font-size:10px; letter-spacing:0.3em; text-transform:uppercase; color:rgba(255,255,255,0.7);">오그림 투어</span>
<span style="color:rgba(255,255,255,0.4); font-size:12px;">·</span>
<span style="font-family:'Cormorant Garamond',serif; font-size:15px; color:#fff; letter-spacing:0.08em;">입소문만으로 매달 출발하는 아트 투어</span>
<span style="color:rgba(255,255,255,0.4); font-size:12px;">·</span>
<span style="font-size:10px; letter-spacing:0.3em; text-transform:uppercase; color:rgba(255,255,255,0.7);">Since 2018</span>
</div>
<section class="hero">
<div class="hero-label">OHGRIM TOUR — 61st International Art Exhibition</div>
<h1>VENICE<br><em>BIENNALE</em><br>2026</h1>
<div class="hero-sub">In Minor Keys — Koyo Kouoh</div>
<div class="hero-meta">
<div class="hero-meta-item">
<span class="label">기간</span>
<span class="value">10. 9 — 10. 16</span>
</div>
<div class="hero-meta-item">
<span class="label">일정</span>
<span class="value">7박 8일</span>
</div>
<div class="hero-meta-item">
<span class="label">도시</span>
<span class="value">Milano · Venezia</span>
</div>
<div class="hero-meta-item">
<span class="label">전시</span>
<span class="value">약 20개</span>
</div>
<div class="hero-meta-item">
<span class="label">모집인원</span>
<span class="value">소수 프라이빗</span>
</div>
</div>
</section>
<!-- PRICE -->
<section class="price-section">
<div class="price-main">
<span class="price-label">상품가 / 1인</span>
<div class="price-amount">750<span>만원</span></div>
</div>
<div class="price-includes">
<div class="price-tag included">조식 · 석식 전일정 포함</div>
<div class="price-tag included">엄선된 베니스 맛집 저녁식사 포함</div>
<div class="price-tag included">전시 입장료 포함 (약 20개)</div>
<div class="price-tag included">기차 (밀라노↔베네치아) 포함</div>
<div class="price-tag included">공항↔밀라노 택시 포함</div>
<div class="price-tag excluded">중식 별도</div>
<div class="price-tag excluded">항공권 별도</div>
</div>
</section>
<!-- STORY -->
<section class="story">
<h2>여행 이야기</h2>
<div class="story-grid">
<div class="story-text">
<p>
베니스 비엔날레는 1895년 창설된 세계에서 가장 오래되고 권위 있는 현대미술 축제입니다.
2년마다 열리는 이 행사는 100여 개국이 참여하는 예술의 올림픽으로,
매회 전 세계의 큐레이터, 컬렉터, 미술 애호가들이 한자리에 모입니다.
</p>
<p>
2026년 61회 비엔날레의 주제는 <strong>In Minor Keys</strong>. 고(故) 코요 쿠오가 구상한 이 전시는
화려함보다 섬세함을, 거대한 선언보다 조용한 울림을 이야기합니다.
단조(短調)처럼, 소리 없이 깊이 스며드는 예술의 언어를 만나는 여정입니다.
</p>
</div>
<div class="story-text">
<p>
자르디니와 아르세날레의 본전시는 물론, 도시 곳곳의 팔라초와 재단에 흩어진
위성전시와 사립 컬렉션까지 — <strong>오그림과 함께라면 베니스 전체가 하나의 미술관이 됩니다.</strong>
</p>
<p>
마리나 아브라모비치, 이우환, 조셉 코수스, 아모아코 보아포.
동시대 가장 중요한 작가들의 신작을 한 도시에서 만나는 단 한 번의 기회입니다.
</p>
</div>
</div>
</section>
<!-- WHY OHGRIM -->
<section class="why-section">
<h2>오그림 투어를 가야만 하는 이유</h2>
<div class="why-grid">
<div class="why-item">
<div class="why-num">01</div>
<div class="why-title">현장 강연 1,500회의 전문가와 함께</div>
<div class="why-desc">
단순한 관람이 아닌, 작품 앞에서 직접 듣는 해설. 미술사적 맥락과 컬렉터의 시선으로
각 전시의 핵심을 짚어드립니다. 혼자서는 지나치기 쉬운 디테일이 이야기가 됩니다.
</div>
</div>
<div class="why-item">
<div class="why-num">02</div>
<div class="why-title">마감 임박 전시, 동선까지 설계된 일정</div>
<div class="why-desc">
비엔날레 기간에는 수백 개의 전시가 열립니다. 오그림은 꼭 봐야 할 전시를 골라내고,
마감일과 요일 휴관까지 고려한 최적의 동선으로 낭비 없는 7박 8일을 만듭니다.
</div>
</div>
<div class="why-item">
<div class="why-num">03</div>
<div class="why-title">소수 프라이빗 투어</div>
<div class="why-desc">
적당히 함께, 적당히 혼자. 소규모로 운영되는 오그림 투어는 나만의 템포로 예술을
즐길 수 있는 균형감을 제공합니다. 입소문만으로 매달 출발하는 투어입니다.
</div>
</div>
</div>
</section>
<!-- BIENNALE INFO -->
<section class="biennale-section">
<h2>베니스 비엔날레 2026 — 주요 정보</h2>
<div class="biennale-grid">
<div class="biennale-block">
<div class="biennale-block-title">61회 국제미술전 — In Minor Keys</div>
<div class="info-row">
<span class="info-label">주제</span>
<span class="info-val">In Minor Keys (단조로 이야기하다)</span>
</div>
<div class="info-row">
<span class="info-label">기획</span>
<span class="info-val">코요 쿠오 (Koyo Kouoh, 1967–2025)</span>
</div>
<div class="info-row">
<span class="info-label">기간</span>
<span class="info-val">2026. 5. 9 — 11. 22</span>
</div>
<div class="info-row">
<span class="info-label">장소</span>
<span class="info-val">자르디니 · 아르세날레 · 베네치아 시내</span>
</div>
<div class="info-row">
<span class="info-label">참여국</span>
<span class="info-val">100개국 이상 국가관 + 31개 콜라테럴 이벤트</span>
</div>
<div class="info-row">
<span class="info-label">작가</span>
<span class="info-val">111인 (중앙전시 기준)</span>
</div>
</div>
<div class="biennale-block">
<div class="biennale-block-title">이번 투어에서 보는 주요 전시</div>
<div class="info-row">
<span class="info-label">본전시</span>
<span class="info-val">아르세날레 + 자르디니 (국가관 포함)</span>
</div>
<div class="info-row">
<span class="info-label">피노 컬렉션</span>
<span class="info-val">팔라초 그라시 + 푼타 델라 도가나</span>
</div>
<div class="info-row">
<span class="info-label">위성전시</span>
<span class="info-val">이우환 · 보에티 · 에르빈 부름 · 코수스 · 보아포 · 아브라모비치 · AMA Venezia 外</span>
</div>
<div class="info-row">
<span class="info-label">페기 구겐하임</span>
<span class="info-val">특별전 + 상설 컬렉션 (피카소 · 폴록 · 달리)</span>
</div>
<div class="info-row">
<span class="info-label">고전 명소</span>
<span class="info-val">두칼레 궁전 · 산마르코 대성당 · 플로리안 카페 · Ca' Rezzonico</span>
</div>
<div class="info-row">
<span class="info-label">밀라노</span>
<span class="info-val">피렐리 HangarBicocca + Fondazione Prada 밀라노</span>
</div>
</div>
</div>
</section>
<!-- PHOTO GALLERY PLACEHOLDER -->
<section class="photo-section">
<h2>갤러리</h2>
<div class="photo-grid">
<div class="photo-placeholder"><span>사진 추가 예정</span></div>
<div class="photo-placeholder"><span>사진 추가 예정</span></div>
<div class="photo-placeholder"><span>사진 추가 예정</span></div>
<div class="photo-placeholder"><span>사진 추가 예정</span></div>
<div class="photo-placeholder"><span>사진 추가 예정</span></div>
<div class="photo-placeholder"><span>사진 추가 예정</span></div>
<div class="photo-placeholder"><span>사진 추가 예정</span></div>
<div class="photo-placeholder"><span>사진 추가 예정</span></div>
<div class="photo-placeholder"><span>사진 추가 예정</span></div>
</div>
</section>
<!-- DINING -->
<section class="dining-section">
<h2>식사</h2>
<div class="dining-intro">
<p>베니스의 석식은 오그림이 직접 선별한 맛집으로 준비됩니다. 드레스코드, 예약, 동선까지 모두 오그림이 준비합니다.</p>
</div>
</section>
<!-- SCHEDULE -->
<section class="schedule-section">
<div class="schedule-header">
<h2>일정</h2>
</div>
<!-- DAY 1 -->
<div class="day-block">
<div class="day-left">
<div class="day-number">Day 1</div>
<div class="day-date">10. 9</div>
<div class="day-weekday">금요일</div>
<div class="day-city">Milano</div>
<div class="day-tag">이동일</div>
</div>
<div class="day-right">
<div class="day-title">밀라노 도착</div>
<div class="item transport">인천 출발 → 밀라노 말펜사 공항 도착</div>
<div class="item">공항 → 밀라노 첸트랄레 (택시)</div>
<div class="item">호텔 체크인 · 휴식</div>
<div class="item dinner">석식</div>
</div>
</div>
<!-- DAY 2 -->
<div class="day-block">
<div class="day-left">
<div class="day-number">Day 2</div>
<div class="day-date">10. 10</div>
<div class="day-weekday">토요일</div>
<div class="day-city">Milano → Venezia</div>
<div class="day-tag">위성전시</div>
</div>
<div class="day-right">
<div class="day-title">밀라노 → 베네치아 / San Marco</div>
<div class="item train">밀라노 첸트랄레 → 베네치아 산타루치아 (Frecciarossa 직통, 약 2시간 27분)</div>
<div class="item">호텔 체크인</div>
<div class="section-divider">위성전시</div>
<div class="item exhibition"><strong>이우환 + 알리기에로 보에티</strong> <span class="venue">— SMAC, Piazza San Marco</span></div>
<div class="item exhibition"><strong>에르빈 부름</strong> <span class="venue">— Palazzo Fortuny</span></div>
<div class="item exhibition"><strong>팔라초 그라시</strong> <span class="venue">— Michael Armitage + Amar Kanwar (Pinault Collection)</span></div>
<div class="item dinner">석식</div>
</div>
</div>
<!-- DAY 3 -->
<div class="day-block">
<div class="day-left">
<div class="day-number">Day 3</div>
<div class="day-date">10. 11</div>
<div class="day-weekday">일요일</div>
<div class="day-city">Venezia</div>
<div class="day-tag">위성전시</div>
</div>
<div class="day-right">
<div class="day-title">Dorsoduro + Giudecca + Cannaregio</div>
<div class="section-divider">위성전시</div>
<div class="item exhibition"><strong>푼타 델라 도가나</strong> <span class="venue">— Lorna Simpson + Paulo Nazareth (Pinault Collection)</span></div>
<div class="item exhibition"><strong>투란도트: To the Daughters of the East</strong> <span class="venue">— Palazzo Franchetti</span></div>
<div class="item exhibition"><strong>조셉 코수스</strong> <span class="venue">— Casa dei Tre Oci, Giudecca</span></div>
<div class="item exhibition"><strong>AMA Venezia — AURA</strong> <span class="venue">— Jenny Saville, Ed Ruscha 外</span></div>
<div class="item dinner">석식</div>
</div>
</div>
<!-- DAY 4 -->
<div class="day-block">
<div class="day-left">
<div class="day-number">Day 4</div>
<div class="day-date">10. 12</div>
<div class="day-weekday">월요일</div>
<div class="day-city">Venezia</div>
<div class="day-tag">위성전시</div>
</div>
<div class="day-right">
<div class="day-title">페기 구겐하임 + 산책</div>
<div class="section-divider">위성전시</div>
<div class="item exhibition"><strong>페기 구겐하임 특별전</strong> <span class="venue">— Peggy Guggenheim in London</span></div>
<div class="item exhibition"><strong>페기 구겐하임 컬렉션</strong> <span class="venue">— 상설전 (피카소 · 폴록 · 달리 外)</span></div>
<div class="section-divider">고전 명소</div>
<div class="item highlight">Ca' Rezzonico — 18세기 베네치아 미술관 <span class="badge classic">Classic</span></div>
<div class="item highlight">리알토 다리 & 시장 산책 <span class="badge classic">Classic</span></div>
<div class="item dinner">석식</div>
</div>
</div>
<!-- DAY 5 -->
<div class="day-block">
<div class="day-left">
<div class="day-number">Day 5</div>
<div class="day-date">10. 13</div>
<div class="day-weekday">화요일</div>
<div class="day-city">Venezia</div>
<div class="day-tag">위성전시</div>
</div>
<div class="day-right">
<div class="day-title">산마르코 + Castello</div>
<div class="section-divider">고전 명소</div>
<div class="item highlight">카페 플로리안 — 산마르코 광장 <span class="badge classic">1720년 창업</span></div>
<div class="item highlight">산마르코 대성당 <span class="badge classic">Classic</span></div>
<div class="item highlight">두칼레 궁전 + 탄식의 다리 <span class="badge classic">Classic</span></div>
<div class="section-divider">위성전시</div>
<div class="item exhibition"><strong>아모아코 보아포</strong> <span class="venue">— Palazzo Grimani</span></div>
<div class="item exhibition"><strong>마리나 아브라모비치 — Transforming Energy</strong> <span class="venue">— Gallerie dell'Accademia</span></div>
<div class="item highlight">갈레리에 델라카데미아 상설 컬렉션 — 티치아노 · 벨리니 · 틴토레토</div>
<div class="item dinner">석식</div>
</div>
</div>
<!-- DAY 6 -->
<div class="day-block">
<div class="day-left">
<div class="day-number">Day 6</div>
<div class="day-date">10. 14</div>
<div class="day-weekday">수요일</div>
<div class="day-city">Venezia</div>
<div class="day-tag">본전시</div>
</div>
<div class="day-right">
<div class="day-title">베니스 비엔날레 본전시 — 아르세날레</div>
<div class="section-divider">본전시</div>
<div class="item exhibition">
<strong>아르세날레</strong>
<span class="venue">— 61회 비엔날레 중앙전시 + 국가관</span>
<span class="badge biennale">하루종일</span>
</div>
<div class="item dinner">석식</div>
</div>
</div>
<!-- DAY 7 -->
<div class="day-block">
<div class="day-left">
<div class="day-number">Day 7</div>
<div class="day-date">10. 15</div>
<div class="day-weekday">목요일</div>
<div class="day-city">Venezia → Milano</div>
<div class="day-tag">본전시 · 이동</div>
</div>
<div class="day-right">
<div class="day-title">베니스 비엔날레 본전시 — 자르디니 → 밀라노</div>
<div class="section-divider">본전시</div>
<div class="item exhibition">
<strong>자르디니</strong>
<span class="venue">— 61회 비엔날레 중앙전시 + 국가관</span>
<span class="badge biennale">하루종일</span>
</div>
<div class="item train">베네치아 산타루치아 → 밀라노 첸트랄레 (Frecciarossa 직통, 약 2시간 27분)</div>
<div class="item">밀라노 호텔 체크인</div>
<div class="item dinner">석식</div>
</div>
</div>
<!-- DAY 8 -->
<div class="day-block">
<div class="day-left">
<div class="day-number">Day 8</div>
<div class="day-date">10. 16</div>
<div class="day-weekday">금요일</div>
<div class="day-city">Milano</div>
<div class="day-tag">귀국</div>
</div>
<div class="day-right">
<div class="day-title">밀라노 → 귀국</div>
<div class="item">오전 휴식</div>
<div class="section-divider">밀라노 전시</div>
<div class="item exhibition"><strong>피렐리 HangarBicocca</strong> + <strong>Fondazione Prada 밀라노</strong></div>
<div class="item transport">말펜사 공항 이동 (택시)</div>
<div class="item transport">밀라노 → 인천 출발</div>
</div>
</div>
</section>
<!-- FOOTER -->
<footer>
<div class="footer-left">
<div class="footer-brand">OHGRIM TOUR</div>
<p>
대표 : 한지혜 · 사업자등록번호 : 519-76-00528<br>
관광등록번호 : 2024-000018<br>
ohgrim22@gmail.com
</p>
</div>
<div style="text-align:right;">
<p style="font-family:'Cormorant Garamond',serif; font-size:13px; color:var(--accent); letter-spacing:0.15em;">
VENICE BIENNALE 2026
</p>
<p style="font-size:11px; color:var(--text-muted); margin-top:4px;">
ⓒ 2026 오그림. All Rights Reserved.
</p>
</div>
</footer>
</body>
</html>
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>오그림 투어 — VENICE BIENNALE 2026</title>
<link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Noto+Sans+KR:wght@300;400;500&display=swap" rel="stylesheet">
<style>
:root {
--bg: #ffffff;
--bg2: #f6f4f0;
--bg3: #f0ede8;
--line: #c8c4bc;
--accent: #b8874a;
--accent2: #7a5420;
--text: #111008;
--text-muted: #444038;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
background: var(--bg);
color: var(--text);
font-family: 'Noto Sans KR', sans-serif;
font-weight: 300;
line-height: 1.8;
}
/* HEADER */
header {
padding: 40px 40px 28px;
border-bottom: 1px solid var(--line);
display: flex;
align-items: center;
justify-content: space-between;
}
.logo {
font-family: 'Cormorant Garamond', serif;
font-size: 22px;
font-weight: 400;
letter-spacing: 0.12em;
color: var(--accent);
text-decoration: none;
}
.logo span {
color: var(--text-muted);
font-weight: 300;
font-size: 12px;
letter-spacing: 0.2em;
display: block;
text-transform: uppercase;
}
/* HERO */
.hero {
padding: 80px 40px 64px;
border-bottom: 1px solid var(--line);
position: relative;
overflow: hidden;
}
.hero::before {
content: 'VENEZIA';
position: absolute;
right: -20px;
top: 20px;
font-family: 'Cormorant Garamond', serif;
font-size: 180px;
font-weight: 300;
color: rgba(184, 135, 74, 0.07);
letter-spacing: -0.02em;
pointer-events: none;
white-space: nowrap;
}
.hero-label {
font-size: 11px;
letter-spacing: 0.3em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 24px;
}
.hero h1 {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(48px, 8vw, 96px);
font-weight: 300;
line-height: 1.0;
letter-spacing: -0.01em;
color: var(--text);
margin-bottom: 16px;
}
.hero h1 em {
font-style: italic;
color: var(--accent);
}
.hero-sub {
font-family: 'Cormorant Garamond', serif;
font-size: 20px;
font-style: italic;
color: var(--text-muted);
margin-bottom: 40px;
}
.hero-meta {
display: flex;
gap: 40px;
flex-wrap: wrap;
}
.hero-meta-item {
display: flex;
flex-direction: column;
gap: 4px;
}
.hero-meta-item .label {
font-size: 10px;
letter-spacing: 0.25em;
text-transform: uppercase;
color: var(--text-muted);
}
.hero-meta-item .value {
font-family: 'Cormorant Garamond', serif;
font-size: 18px;
color: var(--accent2);
}
/* PRICE */
.price-section {
padding: 48px 40px;
border-bottom: 1px solid var(--line);
background: var(--bg2);
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 24px;
}
.price-main { display: flex; flex-direction: column; gap: 6px; }
.price-label {
font-size: 11px;
letter-spacing: 0.25em;
text-transform: uppercase;
color: var(--text-muted);
}
.price-amount {
font-family: 'Cormorant Garamond', serif;
font-size: 52px;
font-weight: 300;
color: var(--accent);
line-height: 1;
}
.price-amount span { font-size: 22px; color: var(--text-muted); }
.price-includes { display: flex; flex-direction: column; gap: 8px; }
.price-tag {
display: inline-flex;
align-items: center;
gap: 8px;
font-size: 13px;
color: var(--text-muted);
}
.price-tag::before {
content: '';
width: 20px;
height: 1px;
background: var(--accent);
display: inline-block;
}
.price-tag.included { color: var(--text); }
.price-tag.excluded {
color: #aaa;
text-decoration: line-through;
text-decoration-color: #ccc;
}
/* STORY */
.story {
padding: 64px 40px;
border-bottom: 1px solid var(--line);
}
.story h2 {
font-family: 'Cormorant Garamond', serif;
font-size: 13px;
font-weight: 400;
letter-spacing: 0.25em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 28px;
}
.story-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 48px;
}
.story-text p {
font-size: 15px;
color: var(--text-muted);
line-height: 2;
margin-bottom: 16px;
}
.story-text p strong {
color: var(--text);
font-weight: 500;
}
/* WHY OHGRIM */
.why-section {
padding: 64px 40px;
border-bottom: 1px solid var(--line);
background: var(--bg2);
}
.why-section h2 {
font-family: 'Cormorant Garamond', serif;
font-size: 13px;
font-weight: 400;
letter-spacing: 0.25em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 48px;
}
.why-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 0;
}
.why-item {
padding: 32px 36px 32px 0;
border-right: 1px solid var(--line);
padding-right: 36px;
}
.why-item:last-child {
border-right: none;
padding-right: 0;
padding-left: 36px;
}
.why-item:nth-child(2) {
padding-left: 36px;
}
.why-num {
font-family: 'Cormorant Garamond', serif;
font-size: 40px;
font-weight: 300;
color: var(--accent);
opacity: 0.4;
line-height: 1;
margin-bottom: 16px;
}
.why-title {
font-size: 15px;
font-weight: 500;
color: var(--text);
margin-bottom: 10px;
letter-spacing: 0.02em;
}
.why-desc {
font-size: 13px;
color: var(--text-muted);
line-height: 1.9;
}
/* BIENNALE INFO */
.biennale-section {
padding: 64px 40px;
border-bottom: 1px solid var(--line);
}
.biennale-section h2 {
font-family: 'Cormorant Garamond', serif;
font-size: 13px;
font-weight: 400;
letter-spacing: 0.25em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 48px;
}
.biennale-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 48px;
}
.biennale-block {}
.biennale-block-title {
font-family: 'Cormorant Garamond', serif;
font-size: 22px;
font-weight: 400;
color: var(--text);
margin-bottom: 16px;
padding-bottom: 16px;
border-bottom: 1px solid var(--line);
}
.biennale-block p {
font-size: 14px;
color: var(--text-muted);
line-height: 1.9;
margin-bottom: 12px;
}
.biennale-block p strong {
color: var(--text);
font-weight: 500;
}
.info-row {
display: flex;
gap: 16px;
padding: 10px 0;
border-bottom: 1px solid var(--bg3);
font-size: 13px;
}
.info-row .info-label {
color: var(--text-muted);
min-width: 80px;
flex-shrink: 0;
font-size: 11px;
letter-spacing: 0.1em;
text-transform: uppercase;
padding-top: 2px;
}
.info-row .info-val {
color: var(--text);
}
/* SCHEDULE */
.schedule-section {
padding: 0 40px 80px;
}
.schedule-header {
padding: 64px 0 40px;
border-bottom: 2px solid var(--text);
}
.schedule-header h2 {
font-family: 'Cormorant Garamond', serif;
font-size: 13px;
letter-spacing: 0.25em;
text-transform: uppercase;
color: var(--accent);
}
/* DAY BLOCK */
.day-block {
border-bottom: 1px solid var(--line);
border-top: 2px solid var(--bg3);
display: grid;
grid-template-columns: 220px 1fr;
margin-top: 2px;
}
.day-left {
padding: 36px 32px 36px 0;
border-right: 4px solid var(--accent);
display: flex;
flex-direction: column;
gap: 2px;
background: var(--bg2);
}
.day-number {
font-family: 'Cormorant Garamond', serif;
font-size: 56px;
font-weight: 300;
letter-spacing: -0.02em;
color: var(--text);
line-height: 1;
margin-bottom: 8px;
}
.day-date {
font-size: 12px;
font-weight: 400;
color: var(--text-muted);
letter-spacing: 0.08em;
}
.day-weekday {
font-size: 11px;
letter-spacing: 0.1em;
color: var(--text-muted);
}
.day-city {
margin-top: 12px;
font-size: 10px;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--accent);
font-weight: 400;
}
.day-tag {
display: inline-block;
margin-top: 12px;
padding: 3px 10px;
font-size: 10px;
letter-spacing: 0.12em;
text-transform: uppercase;
background: var(--accent);
color: #fff;
align-self: flex-start;
}
.day-right {
padding: 40px 0 40px 40px;
display: flex;
flex-direction: column;
}
.day-title {
font-family: 'Cormorant Garamond', serif;
font-size: 24px;
font-weight: 400;
color: var(--text);
margin-bottom: 24px;
letter-spacing: 0.02em;
}
.item {
display: flex;
align-items: flex-start;
gap: 14px;
padding: 7px 0;
font-size: 14px;
color: var(--text-muted);
line-height: 1.6;
}
.item::before {
content: '—';
color: var(--line);
flex-shrink: 0;
}
.item.highlight { color: var(--text); }
.item.exhibition { color: var(--text); }
.item.exhibition strong { color: var(--text); font-weight: 500; }
.item.exhibition .venue { color: var(--text-muted); font-size: 12px; }
.item.transport { color: var(--accent2); font-size: 13px; }
.item.transport::before { content: '✈'; font-size: 11px; }
.item.train::before { content: '🚄'; font-size: 11px; }
.item.dinner::before { content: '🍽'; font-size: 11px; }
.item.dinner { color: var(--text-muted); }
.badge.classic {
display: inline-block;
padding: 2px 8px;
font-size: 10px;
letter-spacing: 0.1em;
border: 1px solid var(--accent);
color: var(--accent);
margin-left: 8px;
vertical-align: middle;
text-transform: uppercase;
}
.badge.biennale {
display: inline-block;
padding: 2px 8px;
font-size: 10px;
letter-spacing: 0.1em;
border: 1px solid #4a7c59;
color: #4a7c59;
margin-left: 8px;
vertical-align: middle;
}
.section-divider {
padding: 14px 0 2px;
font-size: 10px;
letter-spacing: 0.25em;
text-transform: uppercase;
color: var(--accent);
opacity: 0.7;
}
/* FOOTER */
footer {
padding: 48px 40px;
border-top: 1px solid var(--line);
display: flex;
justify-content: space-between;
align-items: flex-end;
flex-wrap: wrap;
gap: 24px;
background: var(--bg2);
}
footer .footer-brand {
font-family: 'Cormorant Garamond', serif;
font-size: 20px;
color: var(--accent);
margin-bottom: 8px;
}
footer p { font-size: 12px; color: var(--text-muted); line-height: 1.8; }
/* RESPONSIVE */
@media (max-width: 768px) {
header, .hero, .price-section, .story, .why-section,
.biennale-section, .schedule-section { padding-left: 24px; padding-right: 24px; }
.story-grid, .why-grid, .biennale-grid { grid-template-columns: 1fr; gap: 32px; }
.why-item, .why-item:nth-child(2), .why-item:last-child {
border-right: none; border-bottom: 1px solid var(--line);
padding: 24px 0; padding-left: 0;
}
.day-block { grid-template-columns: 1fr; }
.day-left { border-right: none; border-bottom: 3px solid var(--accent); padding: 24px 0 20px; }
.day-right { padding: 20px 0 28px; }
.hero::before { font-size: 72px; }
.price-amount { font-size: 40px; }
footer { padding: 32px 24px; }
}
/* PHOTO SECTION */
.photo-section {
padding: 64px 40px;
border-bottom: 1px solid var(--line);
}
.photo-section h2 {
font-family: 'Cormorant Garamond', serif;
font-size: 13px;
font-weight: 400;
letter-spacing: 0.25em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 32px;
}
.photo-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(3, 220px);
gap: 8px;
}
.photo-placeholder {
background: var(--bg3);
border: 1px dashed var(--line);
display: flex;
align-items: center;
justify-content: center;
}
.photo-placeholder span {
font-size: 11px;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--line);
}
/* DINING SECTION */
.dining-section {
padding: 64px 40px;
border-bottom: 1px solid var(--line);
background: var(--bg2);
}
.dining-section h2 {
font-family: 'Cormorant Garamond', serif;
font-size: 13px;
font-weight: 400;
letter-spacing: 0.25em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 24px;
}
.dining-intro {
max-width: 640px;
margin-bottom: 40px;
}
.dining-intro p {
font-size: 15px;
color: var(--text-muted);
line-height: 2;
}
.dining-intro p strong { color: var(--text); font-weight: 500; }
.dining-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}
.dining-item {
display: flex;
flex-direction: column;
gap: 0;
border: 1px solid var(--line);
overflow: hidden;
}
.dining-photo-placeholder {
height: 180px;
background: var(--bg3);
border-bottom: 1px dashed var(--line);
display: flex;
align-items: center;
justify-content: center;
}
.dining-photo-placeholder span {
font-size: 10px;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--line);
}
.dining-info {
padding: 20px;
display: flex;
flex-direction: column;
gap: 6px;
}
.dining-day {
font-size: 10px;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--accent);
}
.dining-name {
font-family: 'Cormorant Garamond', serif;
font-size: 18px;
color: var(--text);
}
.dining-desc {
font-size: 12px;
color: var(--text-muted);
line-height: 1.7;
}
from { opacity: 0; transform: translateY(12px); }
to { opacity: 1; transform: translateY(0); }
}
.hero-label { animation: fadeUp 0.6s ease forwards; }
.hero h1 { animation: fadeUp 0.6s ease 0.1s forwards; opacity: 0; }
.hero-sub { animation: fadeUp 0.6s ease 0.2s forwards; opacity: 0; }
.hero-meta { animation: fadeUp 0.6s ease 0.3s forwards; opacity: 0; }
</style>
</head>
<body>
<!-- HEADER -->
<header>
<a href="#" class="logo">
OHGRIM
<span>Art Tour</span>
</a>
<div style="font-size:11px; letter-spacing:0.2em; color:var(--text-muted); text-transform:uppercase;">
Venice Biennale 2026
</div>
</header>
<!-- TAGLINE BANNER -->
<div style="background:var(--accent); padding:12px 40px; display:flex; align-items:center; justify-content:center; gap:16px;">
<span style="font-size:10px; letter-spacing:0.3em; text-transform:uppercase; color:rgba(255,255,255,0.7);">오그림 투어</span>
<span style="color:rgba(255,255,255,0.4); font-size:12px;">·</span>
<span style="font-family:'Cormorant Garamond',serif; font-size:15px; color:#fff; letter-spacing:0.08em;">입소문만으로 매달 출발하는 아트 투어</span>
<span style="color:rgba(255,255,255,0.4); font-size:12px;">·</span>
<span style="font-size:10px; letter-spacing:0.3em; text-transform:uppercase; color:rgba(255,255,255,0.7);">Since 2018</span>
</div>
<section class="hero">
<div class="hero-label">OHGRIM TOUR — 61st International Art Exhibition</div>
<h1>VENICE<br><em>BIENNALE</em><br>2026</h1>
<div class="hero-sub">In Minor Keys — Koyo Kouoh</div>
<div class="hero-meta">
<div class="hero-meta-item">
<span class="label">기간</span>
<span class="value">10. 9 — 10. 16</span>
</div>
<div class="hero-meta-item">
<span class="label">일정</span>
<span class="value">7박 8일</span>
</div>
<div class="hero-meta-item">
<span class="label">도시</span>
<span class="value">Milano · Venezia</span>
</div>
<div class="hero-meta-item">
<span class="label">전시</span>
<span class="value">약 20개</span>
</div>
<div class="hero-meta-item">
<span class="label">모집인원</span>
<span class="value">소수 프라이빗</span>
</div>
</div>
</section>
<!-- PRICE -->
<section class="price-section">
<div class="price-main">
<span class="price-label">상품가 / 1인</span>
<div class="price-amount">750<span>만원</span></div>
</div>
<div class="price-includes">
<div class="price-tag included">조식 · 석식 전일정 포함</div>
<div class="price-tag included">엄선된 베니스 맛집 저녁식사 포함</div>
<div class="price-tag included">전시 입장료 포함 (약 20개)</div>
<div class="price-tag included">기차 (밀라노↔베네치아) 포함</div>
<div class="price-tag included">공항↔밀라노 택시 포함</div>
<div class="price-tag excluded">중식 별도</div>
<div class="price-tag excluded">항공권 별도</div>
</div>
</section>
<!-- STORY -->
<section class="story">
<h2>여행 이야기</h2>
<div class="story-grid">
<div class="story-text">
<p>
베니스 비엔날레는 1895년 창설된 세계에서 가장 오래되고 권위 있는 현대미술 축제입니다.
2년마다 열리는 이 행사는 100여 개국이 참여하는 예술의 올림픽으로,
매회 전 세계의 큐레이터, 컬렉터, 미술 애호가들이 한자리에 모입니다.
</p>
<p>
2026년 61회 비엔날레의 주제는 <strong>In Minor Keys</strong>. 고(故) 코요 쿠오가 구상한 이 전시는
화려함보다 섬세함을, 거대한 선언보다 조용한 울림을 이야기합니다.
단조(短調)처럼, 소리 없이 깊이 스며드는 예술의 언어를 만나는 여정입니다.
</p>
</div>
<div class="story-text">
<p>
자르디니와 아르세날레의 본전시는 물론, 도시 곳곳의 팔라초와 재단에 흩어진
위성전시와 사립 컬렉션까지 — <strong>오그림과 함께라면 베니스 전체가 하나의 미술관이 됩니다.</strong>
</p>
<p>
마리나 아브라모비치, 이우환, 조셉 코수스, 아모아코 보아포.
동시대 가장 중요한 작가들의 신작을 한 도시에서 만나는 단 한 번의 기회입니다.
</p>
</div>
</div>
</section>
<!-- WHY OHGRIM -->
<section class="why-section">
<h2>오그림 투어를 가야만 하는 이유</h2>
<div class="why-grid">
<div class="why-item">
<div class="why-num">01</div>
<div class="why-title">현장 강연 1,500회의 전문가와 함께</div>
<div class="why-desc">
단순한 관람이 아닌, 작품 앞에서 직접 듣는 해설. 미술사적 맥락과 컬렉터의 시선으로
각 전시의 핵심을 짚어드립니다. 혼자서는 지나치기 쉬운 디테일이 이야기가 됩니다.
</div>
</div>
<div class="why-item">
<div class="why-num">02</div>
<div class="why-title">마감 임박 전시, 동선까지 설계된 일정</div>
<div class="why-desc">
비엔날레 기간에는 수백 개의 전시가 열립니다. 오그림은 꼭 봐야 할 전시를 골라내고,
마감일과 요일 휴관까지 고려한 최적의 동선으로 낭비 없는 7박 8일을 만듭니다.
</div>
</div>
<div class="why-item">
<div class="why-num">03</div>
<div class="why-title">소수 프라이빗 투어</div>
<div class="why-desc">
적당히 함께, 적당히 혼자. 소규모로 운영되는 오그림 투어는 나만의 템포로 예술을
즐길 수 있는 균형감을 제공합니다. 입소문만으로 매달 출발하는 투어입니다.
</div>
</div>
</div>
</section>
<!-- BIENNALE INFO -->
<section class="biennale-section">
<h2>베니스 비엔날레 2026 — 주요 정보</h2>
<div class="biennale-grid">
<div class="biennale-block">
<div class="biennale-block-title">61회 국제미술전 — In Minor Keys</div>
<div class="info-row">
<span class="info-label">주제</span>
<span class="info-val">In Minor Keys (단조로 이야기하다)</span>
</div>
<div class="info-row">
<span class="info-label">기획</span>
<span class="info-val">코요 쿠오 (Koyo Kouoh, 1967–2025)</span>
</div>
<div class="info-row">
<span class="info-label">기간</span>
<span class="info-val">2026. 5. 9 — 11. 22</span>
</div>
<div class="info-row">
<span class="info-label">장소</span>
<span class="info-val">자르디니 · 아르세날레 · 베네치아 시내</span>
</div>
<div class="info-row">
<span class="info-label">참여국</span>
<span class="info-val">100개국 이상 국가관 + 31개 콜라테럴 이벤트</span>
</div>
<div class="info-row">
<span class="info-label">작가</span>
<span class="info-val">111인 (중앙전시 기준)</span>
</div>
</div>
<div class="biennale-block">
<div class="biennale-block-title">이번 투어에서 보는 주요 전시</div>
<div class="info-row">
<span class="info-label">본전시</span>
<span class="info-val">아르세날레 + 자르디니 (국가관 포함)</span>
</div>
<div class="info-row">
<span class="info-label">피노 컬렉션</span>
<span class="info-val">팔라초 그라시 + 푼타 델라 도가나</span>
</div>
<div class="info-row">
<span class="info-label">위성전시</span>
<span class="info-val">이우환 · 보에티 · 에르빈 부름 · 코수스 · 보아포 · 아브라모비치 · AMA Venezia 外</span>
</div>
<div class="info-row">
<span class="info-label">페기 구겐하임</span>
<span class="info-val">특별전 + 상설 컬렉션 (피카소 · 폴록 · 달리)</span>
</div>
<div class="info-row">
<span class="info-label">고전 명소</span>
<span class="info-val">두칼레 궁전 · 산마르코 대성당 · 플로리안 카페 · Ca' Rezzonico</span>
</div>
<div class="info-row">
<span class="info-label">밀라노</span>
<span class="info-val">피렐리 HangarBicocca + Fondazione Prada 밀라노</span>
</div>
</div>
</div>
</section>
<!-- PHOTO GALLERY PLACEHOLDER -->
<section class="photo-section">
<h2>갤러리</h2>
<div class="photo-grid">
<div class="photo-placeholder"><span>사진 추가 예정</span></div>
<div class="photo-placeholder"><span>사진 추가 예정</span></div>
<div class="photo-placeholder"><span>사진 추가 예정</span></div>
<div class="photo-placeholder"><span>사진 추가 예정</span></div>
<div class="photo-placeholder"><span>사진 추가 예정</span></div>
<div class="photo-placeholder"><span>사진 추가 예정</span></div>
<div class="photo-placeholder"><span>사진 추가 예정</span></div>
<div class="photo-placeholder"><span>사진 추가 예정</span></div>
<div class="photo-placeholder"><span>사진 추가 예정</span></div>
</div>
</section>
<!-- DINING -->
<section class="dining-section">
<h2>식사</h2>
<div class="dining-intro">
<p>베니스의 석식은 오그림이 직접 선별한 맛집으로 준비됩니다. 드레스코드, 예약, 동선까지 모두 오그림이 준비합니다.</p>
</div>
</section>
<!-- SCHEDULE -->
<section class="schedule-section">
<div class="schedule-header">
<h2>일정</h2>
</div>
<!-- DAY 1 -->
<div class="day-block">
<div class="day-left">
<div class="day-number">Day 1</div>
<div class="day-date">10. 9</div>
<div class="day-weekday">금요일</div>
<div class="day-city">Milano</div>
<div class="day-tag">이동일</div>
</div>
<div class="day-right">
<div class="day-title">밀라노 도착</div>
<div class="item transport">인천 출발 → 밀라노 말펜사 공항 도착</div>
<div class="item">공항 → 밀라노 첸트랄레 (택시)</div>
<div class="item">호텔 체크인 · 휴식</div>
<div class="item dinner">석식</div>
</div>
</div>
<!-- DAY 2 -->
<div class="day-block">
<div class="day-left">
<div class="day-number">Day 2</div>
<div class="day-date">10. 10</div>
<div class="day-weekday">토요일</div>
<div class="day-city">Milano → Venezia</div>
<div class="day-tag">위성전시</div>
</div>
<div class="day-right">
<div class="day-title">밀라노 → 베네치아 / San Marco</div>
<div class="item train">밀라노 첸트랄레 → 베네치아 산타루치아 (Frecciarossa 직통, 약 2시간 27분)</div>
<div class="item">호텔 체크인</div>
<div class="section-divider">위성전시</div>
<div class="item exhibition"><strong>이우환 + 알리기에로 보에티</strong> <span class="venue">— SMAC, Piazza San Marco</span></div>
<div class="item exhibition"><strong>에르빈 부름</strong> <span class="venue">— Palazzo Fortuny</span></div>
<div class="item exhibition"><strong>팔라초 그라시</strong> <span class="venue">— Michael Armitage + Amar Kanwar (Pinault Collection)</span></div>
<div class="item dinner">석식</div>
</div>
</div>
<!-- DAY 3 -->
<div class="day-block">
<div class="day-left">
<div class="day-number">Day 3</div>
<div class="day-date">10. 11</div>
<div class="day-weekday">일요일</div>
<div class="day-city">Venezia</div>
<div class="day-tag">위성전시</div>
</div>
<div class="day-right">
<div class="day-title">Dorsoduro + Giudecca + Cannaregio</div>
<div class="section-divider">위성전시</div>
<div class="item exhibition"><strong>푼타 델라 도가나</strong> <span class="venue">— Lorna Simpson + Paulo Nazareth (Pinault Collection)</span></div>
<div class="item exhibition"><strong>투란도트: To the Daughters of the East</strong> <span class="venue">— Palazzo Franchetti</span></div>
<div class="item exhibition"><strong>조셉 코수스</strong> <span class="venue">— Casa dei Tre Oci, Giudecca</span></div>
<div class="item exhibition"><strong>AMA Venezia — AURA</strong> <span class="venue">— Jenny Saville, Ed Ruscha 外</span></div>
<div class="item dinner">석식</div>
</div>
</div>
<!-- DAY 4 -->
<div class="day-block">
<div class="day-left">
<div class="day-number">Day 4</div>
<div class="day-date">10. 12</div>
<div class="day-weekday">월요일</div>
<div class="day-city">Venezia</div>
<div class="day-tag">위성전시</div>
</div>
<div class="day-right">
<div class="day-title">페기 구겐하임 + 산책</div>
<div class="section-divider">위성전시</div>
<div class="item exhibition"><strong>페기 구겐하임 특별전</strong> <span class="venue">— Peggy Guggenheim in London</span></div>
<div class="item exhibition"><strong>페기 구겐하임 컬렉션</strong> <span class="venue">— 상설전 (피카소 · 폴록 · 달리 外)</span></div>
<div class="section-divider">고전 명소</div>
<div class="item highlight">Ca' Rezzonico — 18세기 베네치아 미술관 <span class="badge classic">Classic</span></div>
<div class="item highlight">리알토 다리 & 시장 산책 <span class="badge classic">Classic</span></div>
<div class="item dinner">석식</div>
</div>
</div>
<!-- DAY 5 -->
<div class="day-block">
<div class="day-left">
<div class="day-number">Day 5</div>
<div class="day-date">10. 13</div>
<div class="day-weekday">화요일</div>
<div class="day-city">Venezia</div>
<div class="day-tag">위성전시</div>
</div>
<div class="day-right">
<div class="day-title">산마르코 + Castello</div>
<div class="section-divider">고전 명소</div>
<div class="item highlight">카페 플로리안 — 산마르코 광장 <span class="badge classic">1720년 창업</span></div>
<div class="item highlight">산마르코 대성당 <span class="badge classic">Classic</span></div>
<div class="item highlight">두칼레 궁전 + 탄식의 다리 <span class="badge classic">Classic</span></div>
<div class="section-divider">위성전시</div>
<div class="item exhibition"><strong>아모아코 보아포</strong> <span class="venue">— Palazzo Grimani</span></div>
<div class="item exhibition"><strong>마리나 아브라모비치 — Transforming Energy</strong> <span class="venue">— Gallerie dell'Accademia</span></div>
<div class="item highlight">갈레리에 델라카데미아 상설 컬렉션 — 티치아노 · 벨리니 · 틴토레토</div>
<div class="item dinner">석식</div>
</div>
</div>
<!-- DAY 6 -->
<div class="day-block">
<div class="day-left">
<div class="day-number">Day 6</div>
<div class="day-date">10. 14</div>
<div class="day-weekday">수요일</div>
<div class="day-city">Venezia</div>
<div class="day-tag">본전시</div>
</div>
<div class="day-right">
<div class="day-title">베니스 비엔날레 본전시 — 아르세날레</div>
<div class="section-divider">본전시</div>
<div class="item exhibition">
<strong>아르세날레</strong>
<span class="venue">— 61회 비엔날레 중앙전시 + 국가관</span>
<span class="badge biennale">하루종일</span>
</div>
<div class="item dinner">석식</div>
</div>
</div>
<!-- DAY 7 -->
<div class="day-block">
<div class="day-left">
<div class="day-number">Day 7</div>
<div class="day-date">10. 15</div>
<div class="day-weekday">목요일</div>
<div class="day-city">Venezia → Milano</div>
<div class="day-tag">본전시 · 이동</div>
</div>
<div class="day-right">
<div class="day-title">베니스 비엔날레 본전시 — 자르디니 → 밀라노</div>
<div class="section-divider">본전시</div>
<div class="item exhibition">
<strong>자르디니</strong>
<span class="venue">— 61회 비엔날레 중앙전시 + 국가관</span>
<span class="badge biennale">하루종일</span>
</div>
<div class="item train">베네치아 산타루치아 → 밀라노 첸트랄레 (Frecciarossa 직통, 약 2시간 27분)</div>
<div class="item">밀라노 호텔 체크인</div>
<div class="item dinner">석식</div>
</div>
</div>
<!-- DAY 8 -->
<div class="day-block">
<div class="day-left">
<div class="day-number">Day 8</div>
<div class="day-date">10. 16</div>
<div class="day-weekday">금요일</div>
<div class="day-city">Milano</div>
<div class="day-tag">귀국</div>
</div>
<div class="day-right">
<div class="day-title">밀라노 → 귀국</div>
<div class="item">오전 휴식</div>
<div class="section-divider">밀라노 전시</div>
<div class="item exhibition"><strong>피렐리 HangarBicocca</strong> + <strong>Fondazione Prada 밀라노</strong></div>
<div class="item transport">말펜사 공항 이동 (택시)</div>
<div class="item transport">밀라노 → 인천 출발</div>
</div>
</div>
</section>
<!-- FOOTER -->
<footer>
<div class="footer-left">
<div class="footer-brand">OHGRIM TOUR</div>
<p>
대표 : 한지혜 · 사업자등록번호 : 519-76-00528<br>
관광등록번호 : 2024-000018<br>
ohgrim22@gmail.com
</p>
</div>
<div style="text-align:right;">
<p style="font-family:'Cormorant Garamond',serif; font-size:13px; color:var(--accent); letter-spacing:0.15em;">
VENICE BIENNALE 2026
</p>
<p style="font-size:11px; color:var(--text-muted); margin-top:4px;">
ⓒ 2026 오그림. All Rights Reserved.
</p>
</div>
</footer>
</body>
</html>
