/* ===================================================
   WoodTime - Main Stylesheet
   감성적인 원목 시계 브랜드 웹사이트
   =================================================== */

/* ---- CSS Variables ---- */
:root {
  --wood-dark: #3d2b1f;
  --wood-mid: #6b4c38;
  --wood-light: #a0714f;
  --wood-pale: #c8a98a;
  --gold: #c9a84c;
  --gold-light: #e2c47e;
  --cream: #faf6f1;
  --warm-white: #f5f0e8;
  --text-dark: #1e1209;
  --text-mid: #4a3728;
  --text-light: #7a6356;
  --text-pale: #b0948a;
  --shadow-sm: 0 2px 10px rgba(61, 43, 31, 0.08);
  --shadow-md: 0 8px 30px rgba(61, 43, 31, 0.12);
  --shadow-lg: 0 20px 60px rgba(61, 43, 31, 0.18);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- Reset & Base ---- */
*, *::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(--text-dark);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }

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

/* ---- Typography ---- */
.section-label {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--wood-dark);
  line-height: 1.35;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: 'Noto Sans KR', sans-serif;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--wood-dark);
  color: #fff;
  border-color: var(--wood-dark);
}

.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

.btn-light {
  background: var(--cream);
  color: var(--wood-dark);
  border-color: var(--cream);
}

.btn-light:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.35);
}

.btn-full { width: 100%; justify-content: center; }

/* ===================================================
   NAVBAR
   =================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(250, 246, 241, 0.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

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

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
}

.logo-wood {
  color: var(--wood-dark);
}

.logo-time {
  color: var(--gold);
}

.navbar:not(.scrolled) .logo-wood {
  color: #fff;
}

.navbar:not(.scrolled) .logo-time {
  color: var(--gold-light);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  position: relative;
  padding-bottom: 4px;
}

.navbar:not(.scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.85);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.navbar:not(.scrolled) .nav-link:hover,
.navbar:not(.scrolled) .nav-link.active {
  color: var(--gold-light);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--wood-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar:not(.scrolled) .nav-toggle span {
  background: #fff;
}

/* ===================================================
   HERO SECTION
   =================================================== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, var(--wood-dark) 0%, var(--wood-mid) 50%, #8b6355 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(61, 43, 31, 0.85) 40%, rgba(61, 43, 31, 0.2) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 24px 80px 64px;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold-light);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 20px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-scroll-indicator i {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.hero-image-grid {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 48px 60px 0;
}

.hero-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 520px;
  width: 100%;
}

.hero-img-main img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-img-main:hover img {
  transform: scale(1.03);
}

/* ===================================================
   BRAND INTRO
   =================================================== */
.brand-intro {
  padding: 100px 0;
  background: var(--cream);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-desc {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 40px;
}

.intro-stats {
  display: flex;
  gap: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--wood-dark);
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-pale);
  letter-spacing: 0.05em;
}

.intro-image {
  position: relative;
}

.intro-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.intro-badge {
  position: absolute;
  bottom: 28px;
  left: -24px;
  background: var(--wood-dark);
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: var(--shadow-md);
}

.intro-badge i {
  color: var(--gold-light);
  font-size: 1rem;
}

/* ===================================================
   SERVICES
   =================================================== */
.services {
  padding: 100px 0;
  background: var(--warm-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--cream);
  border: 1px solid rgba(160, 113, 79, 0.12);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--wood-mid), var(--gold));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card.featured {
  background: var(--wood-dark);
  border-color: transparent;
}

.service-card.featured::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(1);
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured li {
  color: rgba(255, 255, 255, 0.9);
}

.service-card.featured .service-icon {
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold-light);
}

.service-card.featured .service-features i {
  color: var(--gold-light);
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--warm-white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--wood-mid);
  margin-bottom: 24px;
}

.service-card h3 {
  font-family: 'Noto Serif KR', serif;
  font-size: 1.2rem;
  color: var(--wood-dark);
  margin-bottom: 14px;
  font-weight: 600;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-mid);
}

.service-features i {
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ===================================================
   ABOUT SECTION
   =================================================== */
.about {
  padding: 100px 0;
  background: var(--cream);
}

.about-bg {
  background: linear-gradient(135deg, var(--warm-white) 0%, var(--cream) 100%);
  position: relative;
}

.about-bg::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(160, 113, 79, 0.04));
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  display: grid;
  gap: 20px;
}

.about-img-top, .about-img-bottom {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-img-top img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-bottom img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-top:hover img,
.about-img-bottom:hover img {
  transform: scale(1.04);
}

.about-story p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.95;
  margin-bottom: 18px;
}

.about-highlight {
  font-family: 'Noto Serif KR', serif;
  font-size: 1.05rem !important;
  color: var(--wood-dark) !important;
  background: var(--warm-white);
  border-left: 3px solid var(--gold);
  padding: 18px 24px !important;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 24px !important;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(160, 113, 79, 0.15);
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.value-item i {
  width: 40px;
  height: 40px;
  background: var(--warm-white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.value-item h4 {
  font-family: 'Noto Serif KR', serif;
  font-size: 0.95rem;
  color: var(--wood-dark);
  margin-bottom: 4px;
  font-weight: 600;
}

.value-item p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ===================================================
   PROCESS SECTION
   =================================================== */
.process {
  padding: 100px 0;
  background: var(--wood-dark);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Ccircle cx='40' cy='40' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.process .section-label {
  color: var(--gold-light);
}

.process .section-title {
  color: #fff;
}

.process .section-desc {
  color: rgba(255, 255, 255, 0.6);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.15);
  line-height: 1;
  margin-bottom: -10px;
}

.step-content {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition);
}

.step-content:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
}

.step-content i {
  font-size: 1.8rem;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.step-content h3 {
  font-family: 'Noto Serif KR', serif;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 600;
}

.step-content p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

.step-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-top: 80px;
  flex-shrink: 0;
}

/* ===================================================
   BLOG SECTION
   =================================================== */
.blog {
  padding: 100px 0;
  background: var(--warm-white);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
}

.blog-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.featured-blog .blog-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.featured-blog .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-blog:hover .blog-img img {
  transform: scale(1.06);
}

.blog-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--wood-dark);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

.blog-content {
  padding: 28px;
}

.blog-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-pale);
}

.blog-content h3 {
  font-family: 'Noto Serif KR', serif;
  font-size: 1.2rem;
  color: var(--wood-dark);
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1.45;
}

.blog-content p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 18px;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--wood-mid);
}

.blog-link:hover {
  color: var(--gold);
  gap: 10px;
}

.blog-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-card-sm {
  background: var(--cream);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: grid;
  grid-template-columns: 120px 1fr;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.blog-card-sm:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.blog-sm-img {
  overflow: hidden;
}

.blog-sm-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card-sm:hover .blog-sm-img img {
  transform: scale(1.08);
}

.wood-grain-bg {
  background: linear-gradient(135deg, var(--wood-dark), var(--wood-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.blog-quote {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

.blog-quote i {
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.blog-quote p {
  font-size: 0.72rem;
  line-height: 1.6;
  font-family: 'Noto Serif KR', serif;
  margin-bottom: 0 !important;
}

.blog-sm-content {
  padding: 16px 18px;
}

.blog-category-sm {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.blog-sm-content h4 {
  font-family: 'Noto Serif KR', serif;
  font-size: 0.88rem;
  color: var(--wood-dark);
  line-height: 1.4;
  margin-bottom: 6px;
  font-weight: 600;
}

.blog-sm-content p {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===================================================
   TESTIMONIALS
   =================================================== */
.testimonials {
  padding: 100px 0;
  background: var(--cream);
  overflow: hidden;
}

.testimonials-slider {
  position: relative;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
  min-width: calc(50% - 12px);
  background: var(--warm-white);
  border: 1px solid rgba(160, 113, 79, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
  flex-shrink: 0;
}

.stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wood-mid), var(--wood-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Serif KR', serif;
  font-size: 1rem;
  font-weight: 600;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--wood-dark);
  margin-bottom: 2px;
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-pale);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(107, 76, 56, 0.2);
  background: var(--cream);
  color: var(--wood-mid);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: var(--wood-dark);
  color: #fff;
  border-color: var(--wood-dark);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(107, 76, 56, 0.2);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--wood-dark);
  width: 24px;
  border-radius: 4px;
}

/* ===================================================
   CONTACT SECTION
   =================================================== */
.contact {
  padding: 100px 0;
  background: var(--warm-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact-info p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item i {
  width: 42px;
  height: 42px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wood-mid);
  font-size: 0.95rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.contact-item strong {
  display: block;
  font-size: 0.82rem;
  color: var(--text-pale);
  margin-bottom: 2px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.contact-item span {
  font-size: 0.92rem;
  color: var(--text-mid);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid rgba(160, 113, 79, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wood-mid);
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--wood-dark);
  color: #fff;
  border-color: var(--wood-dark);
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(160, 113, 79, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: 'Noto Sans KR', sans-serif;
  color: var(--text-dark);
  background: var(--warm-white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--wood-mid);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(107, 76, 56, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-pale);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--wood-dark);
  cursor: pointer;
}

.form-check label {
  font-size: 0.82rem;
  color: var(--text-light);
  cursor: pointer;
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, var(--warm-white), var(--cream));
  border-radius: var(--radius-md);
  border: 1px solid rgba(160, 113, 79, 0.15);
}

.form-success i {
  font-size: 2.4rem;
  color: var(--gold);
}

.form-success p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ===================================================
   CTA BANNER
   =================================================== */
.cta-banner {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--wood-dark) 0%, var(--wood-mid) 100%);
  text-align: center;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
  line-height: 1.8;
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: var(--text-dark);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.85;
  margin: 20px 0 24px;
}

.footer-logo .logo-wood {
  color: rgba(255, 255, 255, 0.9);
}

.footer-logo .logo-time {
  color: var(--gold-light);
}

.footer-links h4,
.footer-newsletter h4 {
  font-family: 'Noto Serif KR', serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-newsletter p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  outline: none;
  color: #fff;
  font-size: 0.85rem;
  font-family: 'Noto Sans KR', sans-serif;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.newsletter-form button {
  padding: 12px 18px;
  background: var(--gold);
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 0.85rem;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: var(--gold-light);
}

.newsletter-success {
  display: none;
  font-size: 0.82rem;
  color: var(--gold-light);
  margin-top: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.65);
}

/* ===================================================
   SCROLL TO TOP
   =================================================== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--wood-dark);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(16px);
  transition: var(--transition);
  z-index: 900;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

/* ===================================================
   ANIMATIONS
   =================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===================================================
   RESPONSIVE STYLES
   =================================================== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-content { padding: 140px 32px 60px; max-width: 100%; }
  .hero-image-grid { display: none; }
  .hero { min-height: 80vh; }
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/watch-closeup.jpg') center/cover no-repeat;
    z-index: 0;
    opacity: 0.12;
  }

  .intro-grid,
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .intro-image { order: -1; }

  .services-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

  .process-steps {
    flex-wrap: wrap;
    gap: 24px;
  }
  .step-connector { display: none; }
  .step { min-width: calc(50% - 12px); }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: var(--cream);
    flex-direction: column;
    padding: 80px 32px 40px;
    box-shadow: var(--shadow-lg);
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 999;
    gap: 24px;
  }

  .nav-menu.open { right: 0; }
  .nav-link { color: var(--text-mid) !important; font-size: 1rem; }

  .services-grid { grid-template-columns: 1fr; }

  .blog-grid { grid-template-columns: 1fr; }
  .blog-card-sm { grid-template-columns: 100px 1fr; }

  .testimonial-card { min-width: 100%; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 28px 20px; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .intro-stats { gap: 24px; flex-wrap: wrap; }
  .intro-badge { left: 12px; bottom: 16px; }

  .hero-title { font-size: clamp(1.8rem, 8vw, 3rem); }
  .hero-cta { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }

  .step { min-width: 100%; }

  .process-steps { gap: 16px; }

  .cta-banner { padding: 72px 0; }
}

@media (max-width: 480px) {
  .contact-form-wrap { padding: 24px 16px; }
  .section-title { font-size: 1.6rem; }
  .hero-content { padding: 120px 20px 48px; }
  .process { padding: 72px 0; }
  .services { padding: 72px 0; }
  .about { padding: 72px 0; }
  .blog { padding: 72px 0; }
  .testimonials { padding: 72px 0; }
  .contact { padding: 72px 0; }
  .brand-intro { padding: 72px 0; }
  .footer { padding: 56px 0 0; }
}
