@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700;800&display=swap');

/* =======================================
 * Global Base
 * ======================================= */

:root {
  --gyg-bg: #050509;
  --gyg-bg-soft: #0b0f1a;
  --gyg-bg-elevated: #101525;
  --gyg-border-subtle: rgba(148, 163, 184, 0.24);
  --gyg-text-main: #e5e7eb;
  --gyg-text-muted: #9ca3af;
  --gyg-accent: #fbbf24;
  --gyg-accent-soft: rgba(251, 191, 36, 0.18);
  --gyg-danger: #f97373;

  --gyg-radius-lg: 24px;
  --gyg-radius-md: 16px;
  --gyg-radius-sm: 10px;

  --gyg-header-height: 72px;
  --gyg-floating-cta-height: 72px;
  --gyg-font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, system-ui, sans-serif;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at top, #0b1020, #02030a);
  color: var(--gyg-text-main);
}

body {
  font-family: var(--gyg-font-family);
  line-height: 1.6;
}

button,
input,
select,
textarea,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--gyg-font-family);
}


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

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.gyg-container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding-inline: 16px;
}

.gyg-main {
  min-height: 100vh;
  padding-top: var(--gyg-header-height);
  padding-bottom: calc(var(--gyg-floating-cta-height) + 24px);
}

.gyg-section {
  padding-block: 80px;
}

@media (max-width: 768px) {
  .gyg-section {
    padding-block: 56px;
  }
}

.gyg-section-title {
  font-size: clamp(24px, 3vw, 32px);
  margin: 0 0 16px;
}

.gyg-section-lead {
  max-width: 720px;
  margin: 0 0 32px;
  font-size: 15px;
  color: var(--gyg-text-muted);
}

/* =======================================
 * Global Scroll Reveal
 * ======================================= */
.gyg-reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.986);
  filter: blur(6px);
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.gyg-reveal.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

/* =======================================
 * Header & Nav
 * ======================================= */

.gyg-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  height: var(--gyg-header-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, rgba(5, 5, 15, 0.95), rgba(5, 5, 15, 0.85));
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.gyg-header-scrolled {
  background: rgba(3, 7, 18, 0.98);
  border-bottom-color: rgba(148, 163, 184, 0.3);
}

.gyg-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.gyg-header-logo-text {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
}

.gyg-header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gyg-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(251, 191, 36, 0.5);
  background: radial-gradient(circle at top left, rgba(251, 191, 36, 0.2), transparent);
  font-size: 12px;
  white-space: nowrap;
}

body.gyg-nav-open {
  overflow: hidden;
}

.gyg-nav-overlay {
  position: fixed;
  top: -100%;
  inset: 0;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), rgba(3, 7, 18, 0.98));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease-out, transform 0.25s ease-out;
  z-index: 10;
}

body.gyg-nav-open .gyg-nav-overlay {
  opacity: 1;
  top: var(--gyg-header-height);
  pointer-events: auto;
  height: 100vh;
}

.gyg-nav-inner {
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: space-between;
  padding-block: 32px 24px;
}

.gyg-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.gyg-nav-menu li {
  margin-bottom: 12px;
}

.gyg-nav-menu a {
  font-size: 18px;
  font-weight: 500;
}

.gyg-nav-cta {
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  padding-top: 16px;
}

/* 햄버거 버튼 */

.gyg-nav-toggle {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.7);
  cursor: pointer;
  padding: 0;
}

.gyg-nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.gyg-nav-toggle span:nth-child(2) {
  margin-block: 3px;
}

body.gyg-nav-open .gyg-nav-toggle span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

body.gyg-nav-open .gyg-nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.gyg-nav-open .gyg-nav-toggle span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}



.gyg-nav-inner {
  display: flex;
  flex-direction: column;
  height: calc(100vh - var(--gyg-header-height));
  justify-content: space-between;
  padding-block: 32px 24px;
}

.gyg-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.gyg-nav-menu li {
  margin-bottom: 12px;
}

.gyg-nav-menu a {
  font-size: 18px;
  font-weight: 500;
}

.gyg-nav-cta {
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  padding-top: 16px;
}

/* =======================================
 * Buttons
 * ======================================= */

.gyg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
}

.gyg-btn-primary {
  background: linear-gradient(135deg, #facc15, #f97316);
  color: #111827;
  border-color: rgba(234, 179, 8, 0.8);
}

.gyg-btn-outline {
  background: transparent;
  color: var(--gyg-text-main);
  border-color: rgba(148, 163, 184, 0.6);
}

/* =======================================
 * Hero
 * ======================================= */

.gyg-hero {
  position: relative;
  min-height: calc(100vh - var(--gyg-header-height));
  padding-block: 0;
  display: flex;
  align-items: stretch;
  color: #f9fafb;
}

.gyg-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.gyg-hero-swiper,
.gyg-hero-swiper .swiper-wrapper,
.gyg-hero-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}

.gyg-hero-slide {
  background-size: cover;
  background-position: center;
}

.gyg-hero-slide-1 {
  background-image: url('../img/hero-gangnam-fullsalon-sofa.webp');
}

.gyg-hero-slide-2 {
  background-image: url('../img/hero-gangnam-hyperpublic-toast.webp');
}

.gyg-hero-slide-3 {
  background-image: url('../img/hero-gangnam-roomsalon-whisky.webp');
}

.gyg-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.65), rgba(15, 23, 42, 0.45)),
    radial-gradient(circle at top, rgba(251, 191, 36, 0.12), transparent 55%);
  z-index: 1;
}

.gyg-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-block: 32px 40px;
}

.gyg-hero-content {
  max-width: 640px;
  margin-top: 32px;
}

.gyg-hero-badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(251, 191, 36, 0.5);
  background: rgba(15, 23, 42, 0.7);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.gyg-hero-title {
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 12px;
}

.gyg-hero-lead {
  margin: 0 0 24px;
  color: rgba(229, 231, 235, 0.86);
}

.gyg-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gyg-hero-scrolldown {
  margin: 0 auto;
  margin-top: 24px;
  border: none;
  background: none;
  color: #e5e7eb;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.gyg-hero-scrolldown-icon {
  width: 24px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  position: relative;
}

.gyg-hero-scrolldown-icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 8px;
  width: 2px;
  height: 8px;
  border-radius: 999px;
  background: #e5e7eb;
  transform: translateX(-50%);
  animation: gyg-scroll-dot 1.2s infinite;
}

@keyframes gyg-scroll-dot {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 10px); opacity: 0; }
}

/* =======================================
 * About
 * ======================================= */

.gyg-about {
  position: relative;
  background: radial-gradient(circle at top, #111827, #020617);
}

.gyg-about-bg {
  position: absolute;
  inset: 0;
  opacity: 0.25;
}

.gyg-about-inner {
  position: relative;
}

.gyg-about-content {
  max-width: 720px;
}

/* =======================================
 * Services
 * ======================================= */

.gyg-services {
  background: var(--gyg-bg-soft);
}

.gyg-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.gyg-service-card {
  background: var(--gyg-bg-elevated);
  border-radius: var(--gyg-radius-md);
  padding: 18px 18px 20px;
  border: 1px solid var(--gyg-border-subtle);
}

.gyg-service-thumb {
  height: 140px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  margin-bottom: 14px;
}

/* 서비스 썸네일 배경 – 실제 이미지 경로에 맞게 수정 */
.gyg-service-thumb-roomsalon {
  background-image: url('../img/service-roomsalon.webp');
}

.gyg-service-thumb-hyper {
  background-image: url('../img/service-hyperpublic.webp');
}

.gyg-service-thumb-hardcore {
  background-image: url('../img/service-hardcore.webp');
}

.gyg-service-thumb-fullsalon {
  background-image: url('../img/service-fullsalon.webp');
}

.gyg-service-title {
  margin: 0 0 8px;
  font-size: 17px;
}

.gyg-service-text {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--gyg-text-muted);
}

.gyg-service-list {
  margin: 0;
  padding-left: 18px;
  font-size: 13px;
  color: var(--gyg-text-muted);
}

/* =======================================
 * Banner
 * ======================================= */

.gyg-banner {
  position: relative;
}

.gyg-banner-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/banner-norep.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.gyg-banner-inner {
  position: relative;
}

.gyg-banner-content {
  max-width: 720px;
  background: linear-gradient(to right, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.85));
  border-radius: var(--gyg-radius-lg);
  padding: 24px 22px;
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.gyg-banner-kicker {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gyg-text-muted);
  margin: 0 0 6px;
}

.gyg-banner-title {
  font-size: 20px;
  margin: 0 0 10px;
}

.gyg-banner-text {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--gyg-text-muted);
}

/* =======================================
 * Why
 * ======================================= */

.gyg-why {
  background: var(--gyg-bg);
}

.gyg-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.gyg-why-item {
  background: var(--gyg-bg-elevated);
  border-radius: var(--gyg-radius-md);
  padding: 18px 18px 20px;
  border: 1px solid var(--gyg-border-subtle);
}

.gyg-why-item h3 {
  margin: 0 0 8px;
  font-size: 15px;
}

.gyg-why-item p {
  margin: 0;
  font-size: 13px;
  color: var(--gyg-text-muted);
}

/* =======================================
 * Price
 * ======================================= */

.gyg-price {
  background: var(--gyg-bg-soft);
}

.gyg-price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.gyg-price-card {
  background: var(--gyg-bg-elevated);
  border-radius: var(--gyg-radius-md);
  padding: 18px 18px 20px;
  border: 1px solid var(--gyg-border-subtle);
}

.gyg-price-list {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
  font-size: 13px;
}

.gyg-price-list li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 4px;
}

.gyg-price-note {
  margin: 0;
  font-size: 12px;
  color: var(--gyg-text-muted);
}

.gyg-price-footer {
  margin-top: 18px;
  font-size: 13px;
  color: var(--gyg-text-muted);
}

/* =======================================
 * Guide
 * ======================================= */

.gyg-guide {
  background: var(--gyg-bg);
}

.gyg-guide-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.gyg-guide-steps li {
  background: var(--gyg-bg-elevated);
  border-radius: var(--gyg-radius-md);
  padding: 16px 16px 18px;
  border: 1px solid var(--gyg-border-subtle);
  font-size: 13px;
}

.gyg-guide-steps h3 {
  margin: 0 0 6px;
  font-size: 14px;
}

.gyg-guide-steps p {
  margin: 0;
  color: var(--gyg-text-muted);
}

/* =======================================
 * Invite
 * ======================================= */

.gyg-invite {
  background: radial-gradient(circle at top, #111827, #020617);
}

.gyg-invite-inner {
  display: flex;
  justify-content: center;
}

.gyg-invite-card {
  max-width: 720px;
  background: var(--gyg-bg-elevated);
  border-radius: var(--gyg-radius-lg);
  padding: 24px 22px 26px;
  border: 1px solid var(--gyg-border-subtle);
}

.gyg-invite-text {
  font-size: 14px;
  color: var(--gyg-text-muted);
  margin: 0 0 10px;
}

.gyg-invite-cta {
  margin-top: 12px;
}

/* =======================================
 * Blog
 * ======================================= */

.gyg-blog {
  background: var(--gyg-bg);
}

.gyg-blog-swiper {
  margin-top: 18px;
}

.gyg-blog-card {
  height: auto;
}

.gyg-blog-card-inner {
  display: flex;
  flex-direction: column;
  background: var(--gyg-bg-elevated);
  border-radius: var(--gyg-radius-md);
  overflow: hidden;
  border: 1px solid var(--gyg-border-subtle);
}

.gyg-blog-thumbnail {
  height: 160px;
  overflow: hidden;
}

.gyg-blog-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gyg-blog-thumbnail-placeholder {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top, rgba(251, 191, 36, 0.08), rgba(15, 23, 42, 0.95));
}

.gyg-blog-content {
  padding: 14px 14px 16px;
}

.gyg-blog-title {
  margin: 0 0 4px;
  font-size: 15px;
}

.gyg-blog-date {
  display: block;
  font-size: 12px;
  color: var(--gyg-text-muted);
  margin-bottom: 6px;
}

.gyg-blog-excerpt {
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--gyg-text-muted);
}

.gyg-blog-more {
  font-size: 12px;
  color: var(--gyg-accent);
}

.gyg-blog-pagination {
  margin-top: 12px;
}

/* =======================================
 * FAQ
 * ======================================= */

.gyg-faq {
  background: var(--gyg-bg-soft);
}

.gyg-faq-list {
  max-width: 720px;
}

.gyg-faq-item {
  background: var(--gyg-bg-elevated);
  border-radius: var(--gyg-radius-md);
  padding: 12px 14px;
  border: 1px solid var(--gyg-border-subtle);
  margin-bottom: 8px;
}

.gyg-faq-item summary {
  cursor: pointer;
  font-size: 14px;
}

.gyg-faq-item p {
  margin-top: 8px;
  font-size: 13px;
  color: var(--gyg-text-muted);
}

/* =======================================
 * Contact
 * ======================================= */

.gyg-contact {
  background: var(--gyg-bg);
}

.gyg-contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 24px;
  align-items: flex-start;
}

.gyg-contact-phone {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px;
}

.gyg-contact-phone a {
  color: var(--gyg-accent);
}

.gyg-contact-meta {
  margin: 0 0 16px;
  padding-left: 18px;
  font-size: 13px;
  color: var(--gyg-text-muted);
}

.gyg-contact-map-placeholder {
  min-height: 200px;
  border-radius: var(--gyg-radius-md);
  border: 1px dashed var(--gyg-border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--gyg-text-muted);
}

.gyg-contact-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.6);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), rgba(3, 7, 18, 1));
}

.gyg-contact-video {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .gyg-contact-inner {
    grid-template-columns: minmax(0, 1fr);
  }

    .gyg-contact-video {
    max-height: 420px;
  }
}

/* =======================================
 * Footer & Floating CTA
 * ======================================= */

.gyg-footer {
  background: #020617;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
}

.gyg-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-block: 16px;
  font-size: 13px;
  color: var(--gyg-text-muted);
}

.gyg-footer-brand {
  margin: 0 0 4px;
  color: #e5e7eb;
}

.gyg-footer-meta {
  margin: 0;
}

.gyg-footer-phone {
  margin: 0 0 4px;
}

.gyg-footer-menu {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
}

.gyg-footer-menu li {
  opacity: 0.8;
}

.gyg-footer-menu a {
  text-decoration: none;
}

.gyg-footer-menu a:hover {
  text-decoration: underline;
}

/* Floating CTA */

.gyg-floating-cta {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  height: var(--gyg-floating-cta-height);
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.85));
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  backdrop-filter: blur(16px);
  z-index: 950;
}

.gyg-floating-cta-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.gyg-floating-cta-label {
  font-size: 13px;
  color: var(--gyg-text-muted);
}

@media (max-width: 640px) {
  .gyg-footer-inner {
    flex-direction: column;
  }

  .gyg-floating-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}

/* =======================================
 * Header Menu Refresh
 * ======================================= */

.gyg-header-nav {
  display: none;
  margin-left: auto;
  margin-right: 12px;
}

.gyg-header-menu {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.gyg-header-menu > li {
  position: relative;
}

.gyg-header-menu > li > a {
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.gyg-header-menu .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 160px;
  list-style: none;
  margin: 0;
  padding: 8px;
  border-radius: 10px;
  background: rgba(4, 8, 18, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.gyg-header-menu .sub-menu li a {
  display: block;
  padding: 6px 8px;
  font-size: 13px;
  text-decoration: none;
}

.gyg-header-menu .menu-item-has-children:hover > .sub-menu,
.gyg-header-menu .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (min-width: 1081px) {
  .gyg-header-nav {
    display: block;
  }

  .gyg-nav-toggle {
    display: none;
  }
}

@media (max-width: 1080px) {
  .gyg-header-cta {
    display: none;
  }
}

.gyg-nav-menu .sub-menu {
  list-style: none;
  margin: 8px 0 0 12px;
  padding: 0;
}

.gyg-nav-menu .sub-menu li {
  margin-bottom: 8px;
}

.gyg-nav-menu .sub-menu a {
  font-size: 15px;
  color: #cbd5e1;
}

/* =======================================
 * Home Hub Refresh
 * ======================================= */

.gyg-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.gyg-home-hero {
  min-height: calc(90vh - var(--gyg-header-height));
  display: flex;
  align-items: center;
  background:
    linear-gradient(to bottom, rgba(5, 8, 18, 0.88), rgba(5, 8, 18, 0.62)),
    radial-gradient(circle at top left, rgba(251, 191, 36, 0.16), transparent 62%),
    url('../img/hero-gangnam-fullsalon-sofa.webp') center/cover no-repeat;
}

.gyg-home-hero-inner {
  padding-block: 80px 72px;
  max-width: 820px;
}

.gyg-home-title {
  margin: 0;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.15;
}

.gyg-home-subtitle {
  margin: 12px 0 0;
  font-size: clamp(18px, 2.6vw, 24px);
  color: #f8e5b8;
}

.gyg-home-lead {
  margin: 20px 0 0;
  font-size: 15px;
  line-height: 1.9;
  color: rgba(229, 231, 235, 0.9);
}

.gyg-home-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gyg-home-chip-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gyg-home-chip-list a {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(11, 18, 34, 0.7);
  font-size: 13px;
  text-decoration: none;
}

.gyg-fadeup-seq {
  opacity: 0;
  transform: translateY(18px);
  animation: gyg-fade-up 0.6s ease-out forwards;
}

.gyg-home-hero-inner .gyg-fadeup-seq:nth-child(1) { animation-delay: 0.06s; }
.gyg-home-hero-inner .gyg-fadeup-seq:nth-child(2) { animation-delay: 0.14s; }
.gyg-home-hero-inner .gyg-fadeup-seq:nth-child(3) { animation-delay: 0.22s; }
.gyg-home-hero-inner .gyg-fadeup-seq:nth-child(4) { animation-delay: 0.3s; }
.gyg-home-hero-inner .gyg-fadeup-seq:nth-child(5) { animation-delay: 0.38s; }

@keyframes gyg-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gyg-home-services {
  position: relative;
  overflow: hidden;
  background: #080d19;
}

.gyg-home-services::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(5, 9, 20, 0.9), rgba(5, 9, 20, 0.86)),
    url('../img/service-fullsalon.webp') center/cover no-repeat;
  opacity: 0.32;
  pointer-events: none;
}

.gyg-home-services .gyg-container {
  position: relative;
  z-index: 1;
}

.gyg-home-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.gyg-home-service-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: #0f172a;
}

.gyg-home-service-media {
  height: 180px;
}

.gyg-home-service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gyg-home-service-content {
  padding: 16px;
}

.gyg-home-service-content h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.gyg-home-service-content p {
  margin: 0 0 10px;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.75;
}

.gyg-home-service-content ul {
  margin: 0;
  padding-left: 18px;
  color: #aeb7c8;
  font-size: 13px;
  line-height: 1.75;
}

.gyg-home-service-link {
  margin-top: 10px;
  display: inline-block;
  color: #fbbf24;
  font-weight: 600;
  text-decoration: none;
}

.gyg-home-price-preview {
  position: relative;
  overflow: hidden;
  background: #050509;
}

.gyg-home-price-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(5, 5, 9, 0.92), rgba(5, 5, 9, 0.88)),
    url('../img/hero-gangnam-fullsalon-sofa.webp') center/cover no-repeat;
  opacity: 0.26;
  pointer-events: none;
}

.gyg-home-price-preview .gyg-container {
  position: relative;
  z-index: 1;
}

.gyg-home-price-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 18px;
  margin-bottom: 18px;
  border: 1px solid rgba(251, 191, 36, 0.28);
  border-radius: 18px;
  background:
    radial-gradient(circle at top left, rgba(251, 191, 36, 0.18), transparent 38%),
    rgba(11, 15, 26, 0.94);
  padding: 22px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.gyg-home-price-eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  color: #fbbf24;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.gyg-home-price-main h3 {
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 30px);
}

.gyg-home-price-main p {
  max-width: 720px;
  margin: 0;
  color: #d7deea;
  line-height: 1.85;
}

.gyg-home-price-list {
  display: grid;
  gap: 10px;
}

.gyg-home-price-list div {
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(16, 21, 37, 0.82);
  padding: 13px 14px;
}

.gyg-home-price-list strong,
.gyg-home-price-list span {
  display: block;
}

.gyg-home-price-list strong {
  margin-bottom: 4px;
  color: #f8fafc;
  font-size: 15px;
}

.gyg-home-price-list span {
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.65;
}

.gyg-home-price-tier-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.gyg-home-price-tier-grid article {
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 14px;
  background: rgba(16, 21, 37, 0.92);
  padding: 16px;
}

.gyg-home-price-tier-grid h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.gyg-home-price-tier-grid p {
  margin: 0 0 12px;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.75;
}

.gyg-home-price-tier-grid span {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid rgba(251, 191, 36, 0.35);
  background: rgba(251, 191, 36, 0.12);
  color: #fde68a;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 700;
}

.gyg-home-criteria {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gyg-home-criteria article {
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: #101525;
  padding: 16px;
}

.gyg-home-criteria h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.gyg-home-criteria p {
  margin: 0;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.75;
}

.gyg-home-inline-links {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.gyg-home-inline-links > a:not(.gyg-btn) {
  color: #fbbf24;
}

.gyg-home-reservation {
  position: relative;
  overflow: hidden;
  background: #080d19;
}

.gyg-home-reservation::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(8, 13, 25, 0.92), rgba(8, 13, 25, 0.88)),
    url('../img/banner-norep.webp') center/cover no-repeat;
  opacity: 0.26;
  pointer-events: none;
}

.gyg-home-reservation .gyg-container {
  position: relative;
  z-index: 1;
}

.gyg-home-checklist {
  margin: 0;
  padding-left: 20px;
  color: #dbe1ec;
  line-height: 1.8;
}

.gyg-home-region {
  background: #050509;
}

.gyg-home-region-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gyg-home-region-card {
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: #0d1322;
  padding: 16px;
  text-decoration: none;
}

.gyg-home-region-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.gyg-home-region-card p {
  margin: 0;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.75;
}

.gyg-home-faq {
  position: relative;
  overflow: hidden;
  background: #080d19;
}

.gyg-home-faq::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(8, 13, 25, 0.94), rgba(8, 13, 25, 0.9)),
    url('../img/hero-gangnam-hyperpublic-toast.webp') center/cover no-repeat;
  opacity: 0.18;
  pointer-events: none;
}

.gyg-home-faq .gyg-container {
  position: relative;
  z-index: 1;
}

.gyg-home-faq-more {
  margin: 12px 0 0;
}

.gyg-home-faq-more a {
  color: #fbbf24;
}

.gyg-home-contact-map {
  background:
    radial-gradient(circle at top right, rgba(251, 191, 36, 0.09), transparent 58%),
    linear-gradient(180deg, #04070f 0%, #050509 100%);
}

.gyg-home-contact-map-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.gyg-home-contact-copy {
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: rgba(10, 16, 29, 0.55);
  padding: 22px 20px;
}

.gyg-home-contact-copy .gyg-section-lead {
  margin-bottom: 16px;
}

.gyg-home-contact-phone {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 700;
  color: #f8fafc;
}

.gyg-home-contact-phone a {
  color: #fbbf24;
}

.gyg-home-contact-list {
  margin: 0 0 16px;
  padding-left: 18px;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.75;
}

.gyg-home-contact-map-card {
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  overflow: hidden;
  min-height: 360px;
  background: #0b1220;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

.gyg-home-contact-map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

.gyg-home-bottom-cta {
  background:
    radial-gradient(circle at top left, rgba(251, 191, 36, 0.12), transparent 60%),
    #050509;
}

.gyg-home-letter {
  background:
    linear-gradient(to bottom, rgba(5, 8, 18, 0.94), rgba(5, 8, 18, 0.9)),
    url('../img/banner-norep.webp') center/cover no-repeat;
}

.gyg-home-letter-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 30px 24px;
  border-radius: 18px;
  border: 1px solid rgba(251, 191, 36, 0.28);
  background:
    linear-gradient(to bottom, rgba(14, 20, 34, 0.95), rgba(8, 12, 22, 0.95));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.45);
}

.gyg-home-letter-card h2 {
  margin: 0 0 14px;
}

.gyg-home-letter-card h3 {
  margin: 22px 0 10px;
  font-size: 20px;
}

.gyg-home-letter-card p {
  margin: 0 0 10px;
  line-height: 1.9;
  color: #d9dfeb;
}

.gyg-home-letter-card ul {
  margin: 8px 0 12px;
  padding-left: 20px;
  color: #d9dfeb;
  line-height: 1.85;
}

.gyg-home-parallax {
  position: relative;
  background:
    linear-gradient(to bottom, rgba(5, 8, 18, 0.64), rgba(5, 8, 18, 0.76)),
    var(--home-parallax-bg) center/cover no-repeat fixed;
  padding: 86px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
}

.gyg-home-parallax-box {
  max-width: 760px;
  padding: 20px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 8, 18, 0.58);
  backdrop-filter: blur(4px);
}

.gyg-home-parallax-box p {
  margin: 0;
  font-size: clamp(18px, 2.8vw, 28px);
  line-height: 1.45;
  color: #fff;
  font-weight: 700;
}

.gyg-home-parallax--secondary .gyg-home-parallax-box {
  margin-left: auto;
}

.gyg-home-visuals {
  background: #050509;
}

.gyg-home-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.gyg-home-visual-item {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: #0b1220;
}

.gyg-home-visual-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.gyg-home-latest-posts {
  background:
    radial-gradient(circle at top, rgba(251, 191, 36, 0.08), transparent 55%),
    #050509;
}

.gyg-home-postflow-swiper {
  margin-top: 10px;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.gyg-home-postflow-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.gyg-home-postflow-slide {
  height: auto;
}

.gyg-home-postflow-card {
  display: block;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background:
    radial-gradient(circle at top left, rgba(251, 191, 36, 0.1), transparent 60%),
    #0b1220;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.gyg-home-postflow-card:hover {
  text-decoration: none;
  transform: translateY(-2px);
  border-color: rgba(251, 191, 36, 0.45);
}

.gyg-home-postflow-thumb {
  height: 176px;
  overflow: hidden;
  background: #0f172a;
}

.gyg-home-postflow-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gyg-home-postflow-thumb-fallback {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at top, rgba(251, 191, 36, 0.1), transparent 55%),
    linear-gradient(135deg, #0f172a, #111827);
}

.gyg-home-postflow-content {
  padding: 14px 14px 16px;
}

.gyg-home-postflow-date {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 12px;
  color: #9ca3af;
}

.gyg-home-postflow-content h3 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.45;
  color: #f8fafc;
}

.gyg-home-postflow-content p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: #cbd5e1;
}

.gyg-home-postflow-empty {
  margin: 0;
  color: #9ca3af;
}

@media (max-width: 980px) {
  .gyg-home-service-grid {
    grid-template-columns: 1fr;
  }

  .gyg-home-price-panel {
    grid-template-columns: 1fr;
  }

  .gyg-home-price-tier-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gyg-home-criteria {
    grid-template-columns: 1fr;
  }

  .gyg-home-region-grid {
    grid-template-columns: 1fr;
  }

  .gyg-home-contact-map-grid {
    grid-template-columns: 1fr;
  }

  .gyg-home-visual-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .gyg-home-parallax {
    padding: 64px 0;
    background-attachment: scroll;
  }

  .gyg-home-price-panel {
    padding: 18px;
  }

  .gyg-home-price-tier-grid {
    grid-template-columns: 1fr;
  }

  .gyg-home-visual-item img {
    height: 180px;
  }

  .gyg-home-postflow-thumb {
    height: 160px;
  }

  .gyg-home-letter-card {
    padding: 24px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gyg-reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .gyg-fadeup-seq {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
