/* RESET & BASE --------------------------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
html { font-size:16px; scroll-behavior: smooth; }
body {
  font-family: 'Nanum Gothic', 'Noto Sans KR', Arial, sans-serif;
  background: #f7f6f4;
  color: #212121;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img { max-width:100%; display:block; }
a { text-decoration: none; color: inherit; transition: color .2s; }
ul, ol { list-style: none; }
button, input, select, textarea {
  font-family: inherit; font-size: 1rem; background: none; border: none; outline: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Noto Sans KR', 'Nanum Gothic', sans-serif;
  font-weight: 700;
  color: #222;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
h1 { font-size: 2.25rem; line-height: 1.2; }
h2 { font-size: 1.75rem; line-height: 1.3; }
h3 { font-size: 1.25rem; line-height: 1.4; }
p, li {
  font-family: 'Nanum Gothic', 'Noto Sans KR', sans-serif;
  font-size: 1rem;
  color: #222;
  line-height: 1.8;
  margin-bottom: 12px;
}
strong { font-weight:700; }

/* LUXURY PREMIUM VARIABLES ------------------------ */
:root {
  --color-primary: #294872;
  --color-secondary: #F7C873;
  --color-accent: #FFFFFF;
  --color-bg: #f7f6f4;
  --color-border: #e2e0da;
  --color-text: #212121;
  --color-heading: #222222;
  --color-footer-bg: #20202b;
  --font-display: 'Noto Sans KR', 'Nanum Gothic', Arial, sans-serif;
  --font-body: 'Nanum Gothic', 'Noto Sans KR', Arial, sans-serif;
  --shadow-card: 0 4px 16px rgba(41, 72, 114, 0.08);
  --shadow-elevate: 0 2px 8px rgba(39,38,50,.09);
}

/* CONTAINER & LAYOUTS --------------------------- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.content-wrapper {
  width:100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.section {
  margin-bottom: 60px; padding: 40px 20px;
  background: var(--color-accent);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}
.card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-accent);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
}
.text-image-section { 
  display: flex; 
  align-items: center; 
  gap: 30px; 
  flex-wrap: wrap; 
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 32px;
  background: #f9f5eb;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(41, 72, 114, 0.07);
  margin-bottom: 20px;
}
.testimonial-content p {
  color: #222; font-size: 1.08rem;
}
.testimonial-meta {
  color: #111; font-weight: 500; font-family: var(--font-display);
  margin-top: 6px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 18px 0;
}
.faq-item strong { font-size: 1.1rem; color: var(--color-primary); }

/* HEADER & NAVIGATION --------------------------- */
header {
  width:100%;
  background: var(--color-accent);
  box-shadow: 0 1px 12px rgba(41,72,114,0.07);
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
header a img { height: 48px; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 8px 6px;
  border-radius: 6px;
  transition: background .18s, color .18s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-secondary);
  background: rgba(41,72,114,.07);
}
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  padding: 12px 32px;
  border: none;
  border-radius: 27px;
  font-family: var(--font-display);
  font-size: 1.09rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-align: center;
  transition: background .22s, color .18s, box-shadow .22s;
  box-shadow: 0 2px 8px rgba(247,200,115,.06);
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-secondary);
  border: 1.5px solid var(--color-secondary);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 0 4px 16px rgba(247,200,115,.25);
}
.btn-secondary {
  background: var(--color-accent);
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-primary);
  color: var(--color-secondary);
  box-shadow: 0 4px 16px rgba(41,72,114,.09);
}
/* Hamburger Button */
.mobile-menu-toggle {
  display: none;
  background: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 50%;
  width: 44px; height: 44px;
  position: fixed; right:24px; top:20px;
  z-index: 1102;
  font-size: 1.6rem;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 8px rgba(41,72,114,0.16);
  border: 2px solid var(--color-primary);
  transition: background .2s, color .2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-primary);
  color: var(--color-secondary);
}
/* Mobile Menu Drawers */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(41,72,114,0.98);
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.77,.2,.22,.89);
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-start;
  padding: 0 0 0 0;
}
.mobile-menu.active {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: none;
  color: var(--color-secondary);
  font-size: 2rem;
  position: absolute;
  right: 24px; top: 22px;
  cursor: pointer;
  border: none;
  transition: color .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FFFDF2;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 80px 32px 0 40px;
  gap: 22px;
}
.mobile-nav a {
  color: var(--color-secondary);
  font-size: 1.2rem;
  padding: 12px 6px;
  border-radius: 4px;
  font-family: var(--font-display);
  font-weight: 600;
  transition: background .19s, color .16s;
  margin-left: 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(247,200,115,0.18);
  color: #fff;
}
@media(max-width:1100px){ 
  .container {max-width:96vw;}
}
@media(max-width:900px){ 
  .main-nav {gap: 16px;}
  header .container {gap: 10px;}
  h1 {font-size:2rem;}
  h2 {font-size:1.3rem;}
}
@media(max-width: 860px) {
  .main-nav {display: none !important;}
  .mobile-menu-toggle {display:flex;}
}
@media(min-width: 861px){
  .mobile-menu {display:none!important;}
}
@media(max-width: 600px){
  .mobile-menu {
    padding: 0; min-width: 220px; min-height: 100svh;
  }
  .mobile-nav {padding: 60px 18px 0 18px;}
}

/* SECTIONS AND CARDS --------------------------- */
section {
  width: 100%;
  margin: 0 0 60px 0;
  display: flex;
  justify-content: center;
}
@media(max-width:600px){
  section { margin:0 0 42px 0;}
}
.card {
  background: #faf6eb;
  border: 1px solid #efd893;
  border-radius: 18px;
  box-shadow: var(--shadow-elevate);
  padding: 30px 22px 18px 22px;
  transition: box-shadow .18s, transform .18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 24px rgba(41,72,114,0.12);
  transform: translateY(-4px);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.card-content strong { color: var(--color-primary); }

/* FORM LAYOUTS & UTILS (for CONTACT, FAQ etc) ---- */
form { width:100%; display:flex; flex-direction:column; gap: 18px; }
input, textarea, select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  background: #FFF;
  font-size: 1rem;
  transition: border .18s;
}
input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--color-secondary);
}
label { font-weight: 600; color: var(--color-primary); font-size: 1rem; margin-bottom:6px; }

/* FOOTER -------------------------- */
footer {
  background: var(--color-footer-bg);
  color: var(--color-accent);
  padding: 0 0 14px 0;
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-body);
  margin-top: 60px;
}
footer .container {
  padding: 34px 20px 0 20px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer-logo img { height:50px; margin-bottom:10px; }
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--color-secondary);
  font-size: .98rem;
  transition:color .14s;
}
.footer-nav a:hover, .footer-nav a:focus { color: #E1AF36; }
.footer-contact {
  color: #EFE6D6;
  font-size: .98rem;
  font-family: var(--font-body);
  margin: 0 0 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.footer-contact img { vertical-align: sub; height:1em; margin-right: 5px; }
.copyright { color: #E1AF36; font-size: .93rem; margin-top: 12px; }

/* TESTIMONIALS & REVIEWS ------------------- */
.testimonial-card {
  background: #faf8f3;
  border-left: 6px solid var(--color-secondary);
  color: #222;
  box-shadow: 0 2px 16px rgba(41,72,114,.08);
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow .16s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px rgba(41,72,114,0.13);
}
.testimonial-content {
  display: flex; flex-direction: column;
}
.testimonial-meta {
  font-size: 1rem; color: #907122; margin-top:6px; }
.testimonial-card img[alt*='별점'], .testimonial-card img[alt*='star']  {
  height: 1.2em; display: inline-block; margin: 0 1px;
}

/* UTILITY: ICONS, TAGS, ETC ------------------- */
ul li, .feature-item li {
  display: flex; align-items: center; gap: 10px; margin-bottom:10px;
  font-size: 1rem;
}
ul li img {
  height: 1.4em; width: 1.4em; margin-right:6px;
}
.text-section img {
  height: 1.3em; margin-right: 7px; vertical-align: text-bottom;
}

/* SPACING: FLEXBOX LAYOUTS ---------------------- */
.card-container, .content-grid, .text-image-section {
  gap: 24px;
}
.feature-item { gap: 15px; margin-bottom: 20px; }
.text-image-section {gap: 30px;}
@media(max-width: 768px){
  .text-image-section, .card-container, .content-grid {
    flex-direction: column !important;
    align-items: flex-start;
    gap: 20px;
  }
}

/* FAQ ITEMS ----------------------------- */
.faq-item strong {
  display: block; margin-bottom: 3px;
}
.faq-item p { margin-bottom:0; }
.faq-item:last-child {border: none;}

/* SUCCESS/TY SCREEN --------------------- */
.thankyou-icon { font-size:2.8rem; color: var(--color-secondary); margin-bottom:24px; }

/* MICRO-INTERACTION & TRANSITIONS --------------- */
a, button {
  transition: background .23s, color .18s, box-shadow .19s, border .16s;
}
@media(hover: none) {
  a:active, .btn-primary:active, .btn-secondary:active {
    opacity: 0.85;
  }
}

/* LUXURY DETAILS: GOLDED LINES, ROUNDS ------ */
hr { border:none; border-top:2px solid var(--color-secondary); margin: 32px 0; }
.section {
  border: 2px solid #efd893;
  box-shadow: 0 4px 24px rgba(247,200,115,0.04);
}

/* COOKIE CONSENT BANNER ------------------------ */
#cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #1e2433;
  color: var(--color-accent);
  font-family: var(--font-body);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 18px 14px 17px 14px;
  z-index: 1400;
  box-shadow: 0 -2px 20px rgba(41,72,114,0.23);
  gap: 20px;
  animation: cookie-banner-fade-in .6s ease;
}
@keyframes cookie-banner-fade-in {
  from { transform: translateY(60px); opacity:.0; } 
  to { transform: translateY(0); opacity:1; }
}
#cookie-consent-banner p {
  font-size: 1.04rem; color: #fff; margin: 0;
}
.cookie-btns {
  display:flex; flex-direction: row; gap: 12px;
}
.cookie-btn, .cookie-settings-btn {
  padding: 9px 22px;
  border-radius: 15px;
  border: none;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  cursor: pointer;
}
.cookie-btn-accept {
  background: var(--color-secondary);
  color: var(--color-primary);
  border: 1.5px solid var(--color-secondary);
}
.cookie-btn-accept:hover, .cookie-btn-accept:focus {
  background: var(--color-primary);
  color: var(--color-secondary);
}
.cookie-btn-reject {
  background: transparent;
  color: #f7c873;
  border: 1.5px solid var(--color-secondary);
}
.cookie-btn-reject:hover {
  background: #f7c873;
  color: var(--color-primary);
}
.cookie-settings-btn {
  background: #e2e0da;
  color: var(--color-primary);
  border: 1.3px solid var(--color-primary);
}
.cookie-settings-btn:hover {
  background: var(--color-primary);
  color: var(--color-secondary);
}
@media(max-width:600px){
  #cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 12px 20px 12px;
  }
  .cookie-btns { flex-direction: column; gap:10px; }
}

/* COOKIE MODAL ------------------------------- */
#cookie-modal {
  position: fixed;
  z-index: 1450;
  left:0; top:0; width: 100vw; height: 100vh;
  background: rgba(41,72,114,0.63);
  display: none;
  align-items: center;
  justify-content: center;
  animation: fade-modal-in .3s cubic-bezier(.77,.2,.58,.92);
}
@keyframes fade-modal-in { from { opacity:0; } to { opacity:1; } }
#cookie-modal.active {display:flex;}
.cookie-modal-content {
  background: #fffbe9;
  border-radius: 18px;
  box-shadow: 0 4px 36px rgba(41,72,114,0.24);
  min-width: 320px; max-width:94vw; width:380px;
  padding: 36px 26px 28px 26px;
  position: relative;
  display: flex; flex-direction: column; align-items: flex-start; gap: 18px;
}
.cookie-modal-content h3 {
  font-size: 1.17rem;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.cookie-modal-section {
  width:100%; margin-bottom: 8px;
}
.cookie-category {
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 3px;
  font-size: 1rem;
  display: flex; align-items: center; gap: 11px;
}
.cookie-toggle {
  position: relative; width: 36px; height: 21px;
  display: inline-block;
}
.cookie-toggle input[type="checkbox"] {
  opacity:0; width:0; height:0;
}
.cookie-slider {
  position: absolute; cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #e2e0da;
  border-radius: 21px;
  transition: background .23s;
}
.cookie-toggle input:checked + .cookie-slider { background: var(--color-secondary); }
.cookie-slider:before {
  content: '';
  position: absolute; left:3px; bottom:2px; width: 17px; height: 17px;
  background: #fff; border-radius: 50%;
  transition: .23s;
}
.cookie-toggle input:checked + .cookie-slider:before { left: 16px; background: var(--color-primary); }
.cookie-modal-close {
  position: absolute; top:12px; right:14px;
  background: none; border: none; font-size: 1.6rem;
  color: var(--color-primary);
  cursor: pointer; transition:color .16s;
}
.cookie-modal-close:hover { color: #b08d2c; }
.cookie-modal-btns {
  display: flex; flex-direction: row; gap: 12px; width:100%; margin-top:6px;
}
.cookie-modal-btns button {
  padding: 10px 22px; border-radius: 14px; font-energy: 1rem;
  font-family: var(--font-display);
}

@media(max-width:400px){
  .cookie-modal-content{ min-width: 96vw; padding: 20px 8px; }
}

/* RESPONSIVE TYPO, LAYOUTS -------------------- */
@media(max-width: 768px){
  h1{ font-size: 1.45rem; }
  h2{ font-size: 1.12rem; }
  .footer-logo img {height:36px;}
}

@media (max-width:600px) {
  .section { padding: 22px 5vw; border-radius: 16px; }
  .testimonials {gap:10px;}
  .testimonial-card {padding:14px 6vw;}
  footer .container {padding: 20px 8px 0 8px;}
}

/* HIDING UTILITY --------------------- */
.hide { display:none !important; }

/* FOCUS ACCESSIBILITY OUTLINE --------- */
a:focus, button:focus {
  outline: 2.5px solid var(--color-secondary);
  outline-offset: 3px;
}

/* BRAND ACCENTS IN COMPANY LOGO */
header .container > a,
.footer-logo>img {
  border-radius:13px;
  box-shadow: 0 2px 18px rgba(247,200,115,0.09); 
}

/**** END OF STYLE.CSS ****/
