/* ============================================
   Template 9: Burgundy & Gold
   Company: 주식회사 핀샷 (Finshot Inc.)
   Primary: #6B2D47 | Accent: #D4AF7A | Dark: #3A1829 | Light bg: #FDF9F5
   Font: Inter Tight
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --primary: #6B2D47;
  --accent: #D4AF7A;
  --dark: #3A1829;
  --light-bg: #FDF9F5;
  --white: #FFFFFF;
  --text-dark: #2D1A24;
  --text-light: #6B5E65;
  --border-color: #E8D5C4;
  --font-main: 'Inter Tight', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background-color: var(--light-bg);
  line-height: 1.7;
  font-weight: 400;
  padding-top: 0;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ============================================
   NAVBAR - Template 9: NO fixed-top
   content-wrap container-fluid
   ============================================ */
.custom-navbar {
  background-color: var(--white);
  box-shadow: 0 2px 20px rgba(58, 24, 41, 0.08);
  transition: all 0.3s ease;
  padding: 12px 0;
  z-index: 1030;
  border-bottom: 1px solid var(--border-color);
}

.content-wrap {
  padding: 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
}

.navbar-brand img {
  height: 3rem;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

.navbar-caption {
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary) !important;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.nav-link.link {
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark) !important;
  padding: 0.5rem 1rem !important;
  border-radius: 4px;
  transition: all 0.3s ease;
  letter-spacing: -0.01em;
}

.nav-link.link:hover {
  color: var(--primary) !important;
  background-color: rgba(107, 45, 71, 0.05);
}

.nav-link.link.little-radius {
  border-radius: 6px;
}

.nav-link.link.text-primary {
  color: var(--text-dark) !important;
}

.nav-link.link.text-black {
  color: var(--text-dark) !important;
}

.navbar-nav .nav-link.active {
  color: var(--primary) !important;
  font-weight: 600;
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
  color: var(--text-dark);
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(107, 45, 71, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-buttons {
  display: flex;
  align-items: center;
}

.navbar-buttons .btn {
  font-family: var(--font-main);
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: all 0.3s ease;
}

.navbar-buttons .btn i {
  margin-left: 6px;
  font-size: 0.85rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  font-weight: 600;
}

.btn-primary:hover {
  background-color: var(--dark);
  border-color: var(--dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(107, 45, 71, 0.3);
}

.btn-outline-primary {
  border-color: var(--primary);
  color: var(--primary);
  background: transparent;
  font-weight: 600;
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.btn-black {
  background-color: var(--text-dark);
  color: var(--white);
  font-weight: 600;
  border: none;
}

.btn-black:hover {
  background-color: var(--dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--dark);
  font-weight: 600;
  border: none;
}

.btn-accent:hover {
  background-color: #C49A5C;
  color: var(--dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(212, 175, 122, 0.4);
}

/* ============================================
   HERO SECTION - Template 9: Split, NO parallax, NOT full-screen
   Image-dominant left half
   ============================================ */
.hero-section {
  background-color: var(--light-bg);
  padding: 0;
  margin-top: 0;
}

.hero-section .row {
  min-height: 500px;
  align-items: stretch;
}

.hero-image-col {
  padding: 0;
  overflow: hidden;
}

.hero-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 500px;
}

.hero-content-col {
  display: flex;
  align-items: center;
  padding: 60px 50px;
}

.hero-content-wrapper {
  max-width: 520px;
}

.hero-label {
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}

.hero-content-wrapper h1 {
  font-family: var(--font-main);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero-content-wrapper .hero-subtitle {
  font-family: var(--font-main);
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 28px;
  font-weight: 400;
}

.hero-details {
  display: flex;
  gap: 30px;
  margin-bottom: 28px;
}

.hero-detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

.hero-detail-item i {
  color: var(--accent);
  font-size: 1.1rem;
}

/* ============================================
   SECTIONS
   ============================================ */
.section-py {
  padding: 80px 0;
}

.section-py-sm {
  padding: 60px 0;
}

.section-title {
  font-family: var(--font-main);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-family: var(--font-main);
  font-size: 1.05rem;
  color: var(--text-light);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 40px;
}

.section-label {
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 10px;
}

/* ============================================
   FEATURES / SERVICES CARDS
   ============================================ */
.features-section {
  background-color: var(--white);
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 35px 28px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(107, 45, 71, 0.08);
  border-color: var(--accent);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--white);
  font-size: 1.5rem;
}

.feature-card h3 {
  font-family: var(--font-main);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.feature-card p {
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================
   SERVICES CARDS
   ============================================ */
.services-section {
  background-color: var(--light-bg);
}

.service-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(107, 45, 71, 0.1);
}

.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-body {
  padding: 28px;
}

.service-card-body h3 {
  font-family: var(--font-main);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-card-body p {
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-card-body .btn {
  font-size: 0.9rem;
  padding: 8px 20px;
}

/* ============================================
   ABOUT / IMAGE+TEXT
   ============================================ */
.about-section {
  background-color: var(--white);
}

.about-image-col img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.about-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text-col h2 {
  font-family: var(--font-main);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.about-text-col p {
  font-family: var(--font-main);
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ============================================
   ACHIEVEMENTS / STATS
   ============================================ */
.achievements-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  color: var(--white);
}

.achievements-section .section-title {
  color: var(--white);
}

.achievements-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.achievement-card {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.3s ease;
}

.achievement-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

.achievement-number {
  font-family: var(--font-main);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.achievement-label {
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section {
  background-color: var(--light-bg);
}

.team-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(107, 45, 71, 0.1);
}

.team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.team-card-body {
  padding: 24px 20px;
}

.team-card-body h4 {
  font-family: var(--font-main);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.team-card-body .role {
  font-family: var(--font-main);
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 10px;
}

.team-card-body p {
  font-family: var(--font-main);
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-section {
  background-color: var(--white);
}

.accordion-item {
  border: 1px solid var(--border-color);
  border-radius: 8px !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.accordion-button {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  background: var(--light-bg);
  padding: 16px 24px;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--primary);
  background: linear-gradient(135deg, rgba(107, 45, 71, 0.05) 0%, rgba(212, 175, 122, 0.05) 100%);
}

.accordion-button::after {
  background-size: 1.2rem;
}

.accordion-body {
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  padding: 20px 24px;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-section {
  background-color: var(--light-bg);
}

.form-control {
  font-family: var(--font-main);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212, 175, 122, 0.15);
  outline: none;
}

.form-label {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 6px;
}

/* ============================================
   CONTACT INFO CARDS
   ============================================ */
.contact-info-section {
  background-color: var(--white);
}

.contact-info-card {
  text-align: center;
  padding: 35px 24px;
  background: var(--light-bg);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  height: 100%;
}

.contact-info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.contact-info-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--white);
  font-size: 1.3rem;
}

.contact-info-card h4 {
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.contact-info-card p {
  font-family: var(--font-main);
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================
   GOOGLE MAP PLACEHOLDER
   ============================================ */
.map-section {
  padding: 0;
}

.map-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #e8e0db 0%, #d5ccc4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-family: var(--font-main);
  font-size: 1rem;
}

.map-placeholder i {
  font-size: 2rem;
  margin-right: 10px;
  color: var(--accent);
}

/* ============================================
   FOOTER - Template 9: Simple centered, dark bg
   ============================================ */
.footer-section {
  background-color: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 40px 0 30px;
  text-align: center;
}

.footer-links {
  margin-bottom: 16px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  margin: 0 12px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.footer-info {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin-bottom: 16px;
}

.footer-copyright {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-section {
  background-color: var(--white);
}

.testimonial-card {
  background: var(--light-bg);
  border-radius: 8px;
  padding: 32px;
  border: 1px solid var(--border-color);
  height: 100%;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial-author {
  font-family: var(--font-main);
  font-weight: 700;
  color: var(--dark);
  font-size: 1rem;
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ============================================
   PAGE HEADER (sub-pages)
   ============================================ */
.page-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 100px 0 60px;
  text-align: center;
}

.page-header h1 {
  font-family: var(--font-main);
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.page-header p {
  font-family: var(--font-main);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content .container a {
  color: #000000;
  text-decoration: none;
}

.legal-content .container a:hover {
  color: #00008b;
  text-decoration: underline;
}

.wp-block-heading strong {
  font-family: var(--font-main);
  font-weight: 700;
}

.cookie-tables-white .wp-block-table table,
.cookie-tables-white .wp-block-table th,
.cookie-tables-white .wp-block-table td {
  border: 1px solid black !important;
  border-collapse: collapse !important;
}

.cookie-tables-white .wp-block-table th,
.cookie-tables-white .wp-block-table td {
  padding: 12px 8px !important;
}

.wp-block-table {
  width: 100%;
  overflow-x: auto;
}

.wp-block-table table {
  width: 100%;
  border-collapse: collapse;
}

.wp-block-table th {
  background: var(--light-bg);
  font-weight: 600;
  text-align: left;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
  .hero-content-col {
    padding: 40px 24px;
  }

  .hero-image-col img {
    min-height: 300px;
  }

  .hero-content-wrapper h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .page-header {
    padding: 80px 0 40px;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .hero-details {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 767px) {
  .hero-image-col img {
    min-height: 250px;
  }

  .hero-content-wrapper h1 {
    font-size: 1.7rem;
  }

  .achievement-number {
    font-size: 2.2rem;
  }

  .section-py {
    padding: 50px 0;
  }
}
