:root {
  --ivory: #F9F7F2;
  --white: #FFFFFF;
  --accent: #54C552; /* Signature Green */
  --text-main: #333333;
  --text-heading: #1A1A1A;
  --text-dim: #777777;
  --border-soft: rgba(0, 0, 0, 0.05);
  --glass: rgba(255, 255, 255, 0.7);
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Outfit', sans-serif;
  --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background-color: var(--ivory);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }

/* ===== NAVIGATION ===== */
header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 30px 0; transition: var(--transition);
}
header.scrolled {
  padding: 20px 0; background: var(--glass); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border-soft);
}
.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.c6vtztp { font-family: var(--font-serif); font-size: 28px; font-weight: 700; letter-spacing: 2px; color: var(--text-heading); }
.c6vtztp span { font-weight: 400; font-style: italic; color: var(--accent); margin-left: 5px; }
.cu1tww9 { display: flex; gap: 40px; align-items: center; }
.cu1tww9 a { font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: 2px; color: var(--text-dim); }
.cu1tww9 a:hover, .cu1tww9 a[data-current="true"] { color: var(--accent); }
.ce29viz {
  padding: 12px 25px; border: 1px solid var(--accent); font-size: 12px;
  color: var(--accent) !important; border-radius: 50px;
}
.ce29viz:hover { background: var(--accent); color: white !important; }

/* ===== SECTION UTILS ===== */
.c4ot99g { padding: 120px 0; }
.section.bg-white { background: var(--white); }
.sec-head { margin-bottom: 80px; text-align: center; }
.sec-tag { font-size: 11px; letter-spacing: 5px; color: var(--accent); display: block; margin-bottom: 20px; font-weight: 600; text-transform: uppercase; }
.cnid59m { font-family: var(--font-serif); font-size: clamp(40px, 5vw, 64px); color: var(--text-heading); line-height: 1.1; font-weight: 700; }
.cnid59m em { font-style: italic; color: var(--accent); }
.sec-desc { max-width: 700px; margin: 30px auto 0; font-size: 16px; color: var(--text-dim); }

/* ===== HERO (Jongro Style) ===== */
#hero {
  min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 150px 40px 100px; text-align: center; background: var(--ivory);
}
.hero-arch {
  width: 100%; max-width: 600px; aspect-ratio: 4 / 5;
  border-radius: 400px 400px 0 0; overflow: hidden; margin-bottom: 60px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.1);
  animation: archReveal 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-arch img { width: 100%; height: 100%; object-fit: cover; }
.hero-tag { font-size: 12px; letter-spacing: 6px; color: var(--accent); font-weight: 700; text-transform: uppercase; margin-bottom: 25px; }
.cd6ijwc { font-family: var(--font-serif); font-size: clamp(50px, 8vw, 90px); line-height: 1; color: var(--text-heading); margin-bottom: 30px; }
.cd6ijwc em { font-style: italic; color: var(--accent); }
.c13iscr { font-size: clamp(16px, 2vw, 19px); color: var(--text-dim); max-width: 600px; margin: 0 auto 40px; }

@keyframes archReveal {
  from { opacity: 0; transform: translateY(60px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ===== GRID CARDS ===== */
.v-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-soft); border: 1px solid var(--border-soft); }
.v-card {
  padding: 80px 50px; background: var(--white); transition: var(--transition);
  text-align: center;
}
.v-card:hover { background: var(--ivory); }
.v-card i, .v-card .icon { font-size: 32px; color: var(--accent); margin-bottom: 30px; display: block; font-style: normal; }
.v-card h3 { font-family: var(--font-serif); font-size: 26px; margin-bottom: 20px; color: var(--text-heading); }
.v-card p { font-size: 15px; color: var(--text-dim); line-height: 1.8; }

/* ===== SPLIT LAYOUT ===== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.split-media .arch { border-radius: 400px 400px 0 0; overflow: hidden; aspect-ratio: 4/5; box-shadow: 0 30px 80px rgba(0,0,0,0.08); }
.split-media .arch img { width: 100%; height: 100%; object-fit: cover; }
.split-content h2 { margin-bottom: 30px; }
.split-content p { color: var(--text-dim); font-size: 16px; line-height: 2; margin-bottom: 20px; }

/* ===== GALLERY SYSTEMS ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.gal-item { border-radius: 4px; overflow: hidden; aspect-ratio: 1; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: 1s; }
.gal-item:hover img { transform: scale(1.1); }

/* Arched Gallery Variation */
.arch-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.arch-item { border-radius: 200px 200px 0 0; overflow: hidden; aspect-ratio: 2/3; box-shadow: 0 15px 40px rgba(0,0,0,0.05); }
.arch-item img { width: 100%; height: 100%; object-fit: cover; }

/* ===== SEO TEXT BLOCKS ===== */
.seo-block { max-width: 1000px; margin: 0 auto; line-height: 2.2; color: var(--text-dim); font-size: 16px; }
.seo-block p { margin-bottom: 30px; }
.seo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 60px; }
.seo-card { padding: 40px; background: var(--ivory); border-radius: 8px; border: 1px solid var(--border-soft); }
.seo-card h4 { font-family: var(--font-serif); font-size: 20px; color: var(--text-heading); margin-bottom: 20px; border-bottom: 1px solid var(--accent); display: inline-block; padding-bottom: 5px; }
.seo-card ul li { margin-bottom: 12px; font-size: 14px; position: relative; padding-left: 20px; }
.seo-card ul li::before { content: '•'; color: var(--accent); position: absolute; left: 0; font-weight: bold; }

/* ===== FOOTER & MISC ===== */
footer { padding: 120px 0 60px; background: var(--white); border-top: 1px solid var(--border-soft); }
.f-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 80px; margin-bottom: 60px; }
.footer-logo { font-family: var(--font-serif); font-size: 32px; font-weight: 700; color: var(--text-heading); margin-bottom: 30px; display: block; }
.footer-logo span { font-weight: 400; font-style: italic; color: var(--accent); }
.f-links h5 { font-size: 12px; letter-spacing: 3px; color: var(--accent); margin-bottom: 30px; text-transform: uppercase; font-weight: 700; }
.f-links ul li { margin-bottom: 15px; font-size: 14px; color: var(--text-dim); }
.f-links ul li a:hover { color: var(--accent); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(40px); transition: 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal[data-active="true"] { opacity: 1; transform: translateY(0); }

/* MOBILE RESPONSIVE */
.crltl39 { display: none; cursor: pointer; flex-direction: column; gap: 6px; z-index: 1001; }
.crltl39 span { display: block; width: 28px; height: 2px; background: var(--text-heading); transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1); }

@media (max-width: 1024px) {
  .v-grid, .split, .seo-grid { grid-template-columns: 1fr; gap: 60px; }
  .arch-gallery, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  
  .cu1tww9 {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: var(--ivory); flex-direction: column; justify-content: center;
    padding: 60px 40px; gap: 30px; z-index: 1000;
    transform: translateY(-100%); opacity: 0;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
    display: flex; pointer-events: none;
    overflow-y: auto;
  }
  #mobile-nav[data-active="true"] { transform: translateY(0); opacity: 1; pointer-events: all; }
  .cu1tww9 a { font-size: 24px; color: var(--text-heading); font-family: var(--font-serif); font-weight: 600; transition: 0.3s; }
  .cu1tww9 a[data-current="true"], .cu1tww9 a:hover { color: var(--accent); border-bottom: 2px solid var(--accent); }
  
  #hamburger-btn { 
    display: flex; position: relative; z-index: 1001; 
    width: 30px; height: 20px; flex-direction: column; justify-content: space-between;
  }
  #hamburger-btn[data-active="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); background: var(--accent); }
  #hamburger-btn[data-active="true"] span:nth-child(2) { opacity: 0; transform: translateX(10px); }
  #hamburger-btn[data-active="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); background: var(--accent); }
}

@media (max-width: 768px) {
  .c4ot99g { padding: 80px 0; }
  .cnid59m { font-size: 36px; }
}

