/* ═══════════════════════════════════════════════════════════════
   BOATMAX – Main Stylesheet
   Design: Dynamic & Vibrant Marine
═══════════════════════════════════════════════════════════════ */

/* ─── Variables ────────────────────────────────────────────── */
:root {
  --navy:       #0a1628;
  --navy-mid:   #0d1f3c;
  --blue:       #0066cc;
  --blue-light: #1a85ff;
  --orange:     #ff6b35;
  --orange-dk:  #e85a22;
  --white:      #ffffff;
  --gray-50:    #f8fafc;
  --gray-100:   #f1f5f9;
  --gray-200:   #e2e8f0;
  --gray-400:   #94a3b8;
  --gray-600:   #475569;
  --gray-800:   #1e293b;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 20px rgba(0,0,0,.08);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.15);
  --trans:      all .3s ease;
  --header-h:   72px;
}

/* ─── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Noto Sans KR', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Layout ────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-alt { background: var(--gray-50); }

/* ─── Typography ────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800; color: var(--navy);
  line-height: 1.25; margin-bottom: 16px;
}
.section-desc { color: var(--gray-600); font-size: 17px; max-width: 560px; margin: 0 auto; }
.section-cta { text-align: center; margin-top: 48px; }

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px;
  font-size: 15px; font-weight: 700;
  transition: var(--trans); cursor: pointer; border: 2px solid transparent;
  text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: var(--orange); color: var(--white); border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-dk); border-color: var(--orange-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,53,.35); }
.btn-outline {
  background: transparent; color: var(--navy); border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-white:hover { background: var(--gray-100); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; }

/* ─── Header ────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  background: rgba(10,22,40,.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: var(--trans);
}
.site-header.scrolled {
  background: rgba(10,22,40,1);
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }

.logo-link { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { font-size: 22px; }
.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px; font-weight: 900;
  color: var(--white); letter-spacing: -0.5px;
}
.logo-accent { color: var(--orange); }

.nav-list { display: flex; gap: 4px; }
.nav-list li a {
  display: block; padding: 8px 14px; border-radius: 6px;
  color: rgba(255,255,255,.8); font-size: 15px; font-weight: 500;
  transition: var(--trans);
}
.nav-list li a:hover,
.nav-list li.current a {
  color: var(--white); background: rgba(255,255,255,.1);
}
.nav-list li.current a { color: var(--orange); background: transparent; }

.header-actions { display: flex; align-items: center; gap: 16px; }
.header-phone {
  display: flex; align-items: center; gap: 6px;
  color: var(--orange); font-weight: 700; font-size: 14px;
  transition: var(--trans);
}
.header-phone:hover { color: var(--orange-dk); }

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none; flex-direction: column; gap: 5px; padding: 4px;
}
.mobile-menu-btn span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--trans);
}
.mobile-menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.mobile-menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Nav */
.mobile-nav {
  position: fixed; top: var(--header-h); right: -100%; width: min(320px, 85vw);
  height: calc(100vh - var(--header-h)); background: var(--navy);
  z-index: 999; padding: 24px; transition: right .35s ease;
  overflow-y: auto;
}
.mobile-nav.open { right: 0; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav ul li a {
  display: block; padding: 14px 16px; border-radius: 8px;
  color: rgba(255,255,255,.85); font-size: 16px; font-weight: 500;
  transition: var(--trans); border-bottom: 1px solid rgba(255,255,255,.06);
}
.mobile-nav ul li a:hover { color: var(--white); background: rgba(255,255,255,.08); }
.mobile-phone a { color: var(--orange) !important; font-weight: 700; }

.mobile-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.6);
  z-index: 998; opacity: 0; pointer-events: none; transition: opacity .35s;
}
.mobile-overlay.open { opacity: 1; pointer-events: auto; }

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: var(--navy); overflow: hidden;
  padding-top: var(--header-h);
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0a1628 0%, #0d2559 40%, #0a3d62 100%);
  background-image: url('https://images.unsplash.com/photo-1567899378494-47b22a2ae96a?w=1920&q=80');
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,.85) 0%, rgba(13,37,89,.75) 50%, rgba(10,61,98,.7) 100%);
}
.hero-waves { position: absolute; bottom: 0; left: 0; right: 0; height: 120px; }
.wave { position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; }
.wave1 { animation: waveAnim1 8s ease-in-out infinite; }
.wave2 { animation: waveAnim2 10s ease-in-out infinite reverse; }
.wave3 { animation: waveAnim3 12s ease-in-out infinite; }
@keyframes waveAnim1 { 0%,100%{transform:translateX(0)} 50%{transform:translateX(-2%)} }
@keyframes waveAnim2 { 0%,100%{transform:translateX(0)} 50%{transform:translateX(2%)} }
@keyframes waveAnim3 { 0%,100%{transform:translateX(0)} 50%{transform:translateX(-1%)} }

.hero-content { position: relative; z-index: 2; max-width: 760px; padding: 60px 0 140px; }
.hero-badge {
  display: inline-flex; align-items: center;
  background: rgba(255,107,53,.15); border: 1px solid rgba(255,107,53,.3);
  border-radius: 50px; padding: 6px 16px; margin-bottom: 24px;
}
.hero-badge span {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 2px; color: var(--orange);
}
.hero-title {
  display: flex; flex-direction: column;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; line-height: 1.1; margin-bottom: 24px;
}
.hero-title-line1 {
  font-size: clamp(20px, 3vw, 28px); font-weight: 400;
  font-family: 'Noto Sans KR', sans-serif;
  color: rgba(255,255,255,.7); margin-bottom: 4px;
}
.hero-title-line2 {
  font-size: clamp(56px, 10vw, 96px);
  color: var(--white); letter-spacing: -2px;
}
.text-accent { color: var(--orange); }
.hero-desc {
  font-size: clamp(16px, 2vw, 20px); color: rgba(255,255,255,.75);
  margin-bottom: 40px; line-height: 1.8;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 60px; }

.hero-stats { display: flex; align-items: center; gap: 32px; }
.stat { text-align: center; }
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 5vw, 48px); font-weight: 900; color: var(--white);
}
.stat-suffix { font-size: 20px; font-weight: 700; color: var(--orange); }
.stat-label { display: block; font-size: 13px; color: rgba(255,255,255,.6); margin-top: 2px; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,.2); }

.hero-scroll {
  position: absolute; bottom: 140px; left: 50%; transform: translateX(-50%);
  z-index: 2; animation: bounceDown 2s ease-in-out infinite;
}
.hero-scroll span {
  display: block; width: 24px; height: 40px; border: 2px solid rgba(255,255,255,.4);
  border-radius: 12px; position: relative;
}
.hero-scroll span::after {
  content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background: rgba(255,255,255,.6); border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes bounceDown { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }
@keyframes scrollDot { 0%,100%{opacity:1;top:6px} 50%{opacity:0;top:20px} }

/* ─── Services ──────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 32px; box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: var(--trans);
  animation: fadeInUp .5s ease both;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.service-icon {
  width: 64px; height: 64px; background: rgba(0,102,204,.08); border-radius: 16px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  color: var(--blue); transition: var(--trans);
}
.service-card:hover .service-icon { background: var(--blue); color: var(--white); }
.service-icon svg { width: 32px; height: 32px; }
.service-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--navy); }
.service-card p { color: var(--gray-600); font-size: 15px; margin-bottom: 20px; }
.service-link { color: var(--blue); font-weight: 700; font-size: 14px; transition: var(--trans); }
.service-link:hover { color: var(--orange); gap: 8px; }

/* ─── About Strip ────────────────────────────────────────────── */
.about-strip-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-strip-content .section-title { text-align: left; }
.about-strip-content p { color: var(--gray-600); margin-bottom: 16px; font-size: 16px; }
.about-strip-badges { margin: 28px 0; display: flex; flex-direction: column; gap: 12px; }
.badge-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 500; color: var(--gray-800);
}
.badge-item svg { color: var(--blue); flex-shrink: 0; }

.about-strip-visual { position: relative; height: 420px; }
.visual-card {
  position: absolute; background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 16px 20px; z-index: 2;
}
.vc-inner { display: flex; align-items: center; gap: 10px; }
.vc-icon { font-size: 28px; }
.vc-text { font-weight: 700; font-size: 15px; white-space: nowrap; }
.vc1 { top: 20px; left: 20px; }
.vc2 { top: 20px; right: 20px; background: var(--navy); color: var(--white); }
.vc3 { bottom: 80px; left: 20px; background: var(--orange); color: var(--white); }
.about-map-placeholder {
  position: absolute; inset: 60px 0 0 0; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
}

/* ─── Boats ──────────────────────────────────────────────────── */
.boats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.boat-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--gray-200);
  transition: var(--trans);
}
.boat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.boat-thumb {
  position: relative; aspect-ratio: 16/10; overflow: hidden;
  background: var(--gray-100);
}
.boat-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.boat-card:hover .boat-thumb img { transform: scale(1.05); }
.boat-thumb.no-image { display: flex; align-items: center; justify-content: center; }
.no-image-icon { font-size: 48px; }
.boat-status {
  position: absolute; top: 12px; right: 12px;
  padding: 4px 12px; border-radius: 50px; font-size: 12px; font-weight: 700;
}
.status-판매중 { background: #22c55e; color: #fff; }
.status-예약중 { background: var(--orange); color: #fff; }
.status-판매완료 { background: var(--gray-400); color: #fff; }
.status-lg { display: inline-block; margin-bottom: 12px; padding: 6px 16px; font-size: 14px; border-radius: 50px; }

.boat-info { padding: 20px; }
.boat-type {
  display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--blue); margin-bottom: 8px;
}
.boat-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.boat-title a:hover { color: var(--blue); }
.boat-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.boat-meta span { font-size: 13px; color: var(--gray-600); }
.boat-price { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 16px; }

/* Boats filter */
.boats-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filter-btn {
  padding: 8px 20px; border-radius: 50px; font-size: 14px; font-weight: 600;
  border: 2px solid var(--gray-200); background: var(--white); color: var(--gray-600);
  transition: var(--trans); cursor: pointer; text-decoration: none;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--blue); background: var(--blue); color: var(--white);
}

/* Boat Detail */
.boat-detail-inner { display: grid; grid-template-columns: 1fr 420px; gap: 48px; margin-bottom: 60px; }
.gallery-main { border-radius: var(--radius-lg); overflow: hidden; }
.gallery-main img { width: 100%; border-radius: var(--radius-lg); }
.gallery-main.no-image {
  background: var(--gray-100); border-radius: var(--radius-lg);
  aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center; font-size: 72px;
}
.boat-price-lg { font-size: 32px; font-weight: 900; color: var(--navy); margin-bottom: 24px; }
.boat-specs-table { width: 100%; border-collapse: collapse; margin-bottom: 28px; }
.boat-specs-table th, .boat-specs-table td { padding: 10px 12px; border-bottom: 1px solid var(--gray-200); font-size: 14px; }
.boat-specs-table th { width: 100px; color: var(--gray-600); font-weight: 500; white-space: nowrap; }
.boat-specs-table td { font-weight: 600; }
.boat-cta-box { background: var(--gray-50); border-radius: var(--radius); padding: 24px; }
.boat-cta-box p { margin-bottom: 16px; color: var(--gray-600); font-size: 15px; }
.boat-cta-box .btn { margin-bottom: 10px; }

.boat-description { margin-bottom: 60px; }
.boat-description h2 { font-size: 24px; font-weight: 700; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 2px solid var(--gray-200); }
.related-boats h2 { font-size: 24px; font-weight: 700; margin-bottom: 28px; }

/* ─── Blog ───────────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--trans); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-content { padding: 20px 24px; }
.blog-date { font-size: 12px; color: var(--gray-400); margin-bottom: 8px; }
.blog-content h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.blog-content h3 a:hover { color: var(--blue); }
.blog-content p { color: var(--gray-600); font-size: 14px; margin-bottom: 16px; }
.read-more { color: var(--blue); font-weight: 700; font-size: 14px; }
.read-more:hover { color: var(--orange); }

/* Blog Archive */
.blog-archive-inner { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.blog-card-lg { display: flex; gap: 0; flex-direction: column; margin-bottom: 28px; }
.blog-card-lg .blog-thumb { aspect-ratio: 16/7; }
.blog-card-lg .blog-content h2 { font-size: 20px; margin-bottom: 12px; }

.blog-sidebar .sidebar-widget { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); margin-bottom: 24px; }
.widget-title { font-size: 16px; font-weight: 700; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--orange); color: var(--navy); }
.sidebar-widget ul { display: flex; flex-direction: column; gap: 8px; }
.sidebar-widget ul li a { font-size: 14px; color: var(--gray-600); transition: var(--trans); }
.sidebar-widget ul li a:hover { color: var(--blue); }
.sidebar-cta .btn { margin-bottom: 10px; }
.sidebar-cta p { font-size: 14px; color: var(--gray-600); margin-bottom: 16px; }

/* Single Post */
.post-featured-img { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 40px; }
.post-meta-hero { font-size: 14px; color: rgba(255,255,255,.7); margin-top: 8px; }
.post-content-wrap { min-width: 0; }
.content { font-size: 16px; line-height: 1.9; color: var(--gray-800); }
.content h2 { font-size: 26px; font-weight: 700; margin: 40px 0 16px; }
.content h3 { font-size: 22px; font-weight: 700; margin: 32px 0 12px; }
.content p { margin-bottom: 20px; }
.content img { border-radius: var(--radius); margin: 24px 0; }
.content ul, .content ol { margin: 0 0 20px 24px; }
.content li { margin-bottom: 8px; }
.post-tags { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--gray-200); font-size: 14px; color: var(--gray-600); }
.back-link { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,.7); font-size: 14px; margin-bottom: 16px; transition: var(--trans); }
.back-link:hover { color: var(--white); }

/* ─── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
  position: relative; padding: 80px 0; overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #0d2559 60%, #0a3d62 100%);
}
.cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,107,53,.2) 0%, transparent 60%);
}
.cta-inner { position: relative; z-index: 2; text-align: center; }
.cta-inner h2 { font-size: clamp(28px,4vw,42px); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.cta-inner p { font-size: 18px; color: rgba(255,255,255,.75); margin-bottom: 40px; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

/* ─── Page Hero ──────────────────────────────────────────────── */
.page-hero {
  padding: calc(var(--header-h) + 60px) 0 60px;
  background: linear-gradient(135deg, var(--navy) 0%, #0d2559 100%);
  background-image: linear-gradient(135deg, rgba(10,22,40,.88) 0%, rgba(13,37,89,.85) 100%), url('https://images.unsplash.com/photo-1605281317010-fe5ffe798166?w=1600&q=80');
  background-size: cover;
  background-position: center;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .section-label { display: block; margin-bottom: 12px; }
.page-hero h1 { font-size: clamp(36px,6vw,56px); font-weight: 900; color: var(--white); margin-bottom: 12px; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,.75); }
.page-hero-sm { padding: calc(var(--header-h) + 40px) 0 40px; }
.page-hero-sm h1 { font-size: clamp(28px,5vw,44px); }

/* ─── About Page ─────────────────────────────────────────────── */
.about-intro-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: start; }
.about-intro-text .lead { font-size: 20px; font-weight: 500; color: var(--navy); margin-bottom: 20px; line-height: 1.6; }
.about-intro-text p { color: var(--gray-600); margin-bottom: 16px; font-size: 16px; }
.info-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.info-table { width: 100%; border-collapse: collapse; }
.info-table th, .info-table td { padding: 14px 20px; border-bottom: 1px solid var(--gray-200); font-size: 15px; vertical-align: top; }
.info-table th { width: 100px; color: var(--gray-600); font-weight: 500; background: var(--gray-50); white-space: nowrap; }
.info-table td { font-weight: 600; }
.info-table td a:hover { color: var(--blue); }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-item { text-align: center; padding: 36px 24px; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.value-icon { font-size: 48px; margin-bottom: 20px; }
.value-item h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; color: var(--navy); }
.value-item p { font-size: 14px; color: var(--gray-600); }

.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cert-item { background: var(--white); border-radius: var(--radius-lg); padding: 32px 24px; box-shadow: var(--shadow); }
.cert-icon { font-size: 40px; margin-bottom: 16px; }
.cert-item h4 { font-size: 17px; font-weight: 700; margin-bottom: 16px; color: var(--navy); padding-bottom: 12px; border-bottom: 2px solid var(--orange); }
.cert-item ul { display: flex; flex-direction: column; gap: 8px; }
.cert-item ul li { font-size: 14px; color: var(--gray-600); padding-left: 16px; position: relative; }
.cert-item ul li::before { content: '•'; position: absolute; left: 0; color: var(--blue); }

.location-inner { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: start; }
.location-info { display: flex; flex-direction: column; gap: 24px; }
.loc-item { display: flex; gap: 16px; }
.loc-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.loc-item strong { display: block; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.loc-item p { font-size: 15px; color: var(--gray-600); }
.loc-item a:hover { color: var(--blue); }

/* ─── Contact ────────────────────────────────────────────────── */
.contact-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
.contact-info h2, .contact-form-wrap h2 { font-size: 26px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.form-notice { color: var(--gray-600); font-size: 14px; margin-bottom: 28px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon { font-size: 24px; flex-shrink: 0; }
.ci-text strong { display: block; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.ci-text a, .ci-text span { font-size: 15px; color: var(--gray-600); }
.ci-text a:hover { color: var(--blue); }
.contact-map { border-radius: var(--radius); overflow: hidden; }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 14px; font-weight: 600; color: var(--navy); }
.required { color: var(--orange); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px; border: 2px solid var(--gray-200); border-radius: 8px;
  font-family: 'Noto Sans KR', sans-serif; font-size: 15px; color: var(--gray-800);
  background: var(--white); transition: var(--trans); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,102,204,.12);
}
.form-group textarea { resize: vertical; }

.form-result {
  padding: 14px 18px; border-radius: 8px; font-size: 15px; font-weight: 500; display: none;
}
.form-result.success { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; display: block; }
.form-result.error { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; display: block; }

/* ─── Footer ─────────────────────────────────────────────────── */
.site-footer { background: var(--navy); color: rgba(255,255,255,.8); }
.footer-top { padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr 2fr; gap: 48px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-tagline { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,.6); margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 8px; background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); transition: var(--trans);
}
.footer-social a:hover { background: var(--orange); color: var(--white); }
.footer-links h4, .footer-services h4, .footer-contact h4 {
  font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 20px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-links ul, .footer-services ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links ul li, .footer-services ul li { font-size: 14px; color: rgba(255,255,255,.65); }
.footer-links ul li a:hover { color: var(--orange); }
.contact-list { display: flex; flex-direction: column; gap: 14px; }
.contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; }
.contact-list li svg { flex-shrink: 0; margin-top: 3px; }
.contact-list li a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0;
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.45); }
.footer-info { margin-top: 4px; }

/* ─── Pagination ─────────────────────────────────────────────── */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.pagination .page-numbers {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border-radius: 8px; border: 2px solid var(--gray-200); font-size: 14px; font-weight: 600;
  transition: var(--trans);
}
.pagination .page-numbers:hover, .pagination .page-numbers.current {
  background: var(--blue); border-color: var(--blue); color: var(--white);
}
.pagination .prev, .pagination .next { width: auto; padding: 0 16px; }

/* ─── No Results ─────────────────────────────────────────────── */
.no-results { text-align: center; padding: 80px 24px; }
.no-results-icon { font-size: 64px; display: block; margin-bottom: 24px; }
.no-results h3 { font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.no-results p { color: var(--gray-600); margin-bottom: 32px; }

/* ─── Animations ─────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp .6s ease both; }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .values-grid, .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .about-strip-inner, .about-intro-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-strip-visual { height: 350px; }
  .boat-detail-inner { grid-template-columns: 1fr; }
  .location-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .section { padding: 56px 0; }
  .header-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .header-phone { display: none; }
  .hero-stats { gap: 20px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-archive-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .boats-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .hero-stats { flex-wrap: wrap; justify-content: center; }
  .stat-divider { display: none; }
}

/* 페이지별 히어로 이미지 */
.page-hero-about {
  background-image: linear-gradient(135deg, rgba(10,22,40,.80) 0%, rgba(13,37,89,.75) 100%), url('https://images.unsplash.com/photo-1567899378494-47b22a2ae96a?w=1600&q=80') !important;
  background-position: center 70% !important;
}
.page-hero-boats {
  background-image: linear-gradient(135deg, rgba(10,22,40,.75) 0%, rgba(13,37,89,.70) 100%), url('https://images.unsplash.com/photo-1569263979104-865ab7cd8d13?w=1600&q=80') !important;
  background-position: center !important;
}
.page-hero-blog {
  background-image: linear-gradient(135deg, rgba(10,22,40,.80) 0%, rgba(13,37,89,.75) 100%), url('https://images.unsplash.com/photo-1605281317010-fe5ffe798166?w=1600&q=80') !important;
  background-position: center !important;
}
.page-hero-contact {
  background-image: linear-gradient(135deg, rgba(10,22,40,.78) 0%, rgba(13,37,89,.73) 100%), url('https://images.unsplash.com/photo-1604737637145-48cc31d160eb?w=1600&q=80') !important;
  background-position: center !important;
}
