:root {
  --bg: #f5efe4;
  --bg-soft: #f9f4ec;
  --text: #1f1d1a;
  --sub: #5a5249;
  --primary: #20493f;
  --primary-2: #2f6a5a;
  --line: rgba(32, 73, 63, 0.14);
  --card: rgba(255, 251, 245, 0.78);
  --shadow: 0 14px 40px rgba(47, 106, 90, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans KR", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 10% 10%, #fff7ea, transparent 45%),
    radial-gradient(circle at 90% 20%, #e5f2ea, transparent 38%), var(--bg);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.texture {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0) 30%
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 9px
    );
  pointer-events: none;
  z-index: -2;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  z-index: -3;
  opacity: 0.45;
}

.orb-a {
  width: 420px;
  height: 420px;
  top: -90px;
  left: -100px;
  background: #ffe2bd;
}

.orb-b {
  width: 340px;
  height: 340px;
  right: -70px;
  top: 45vh;
  background: #c4e8d7;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(245, 239, 228, 0.72);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--primary);
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 1.2rem;
}

.nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.nav a:hover {
  opacity: 1;
}

.hero {
  padding: 7rem 0 4.5rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 1.4rem;
}

.hero-media {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(32, 73, 63, 0.18);
  box-shadow: 0 18px 40px rgba(22, 47, 41, 0.18);
  background: rgba(255, 255, 255, 0.68);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  display: block;
}

.eyebrow,
.section-tag {
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-2);
  font-weight: 700;
}

.hero h1 {
  margin: 0.6rem 0 1.2rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.1rem, 5vw, 4.3rem);
  line-height: 1.1;
  max-width: 9.5em;
}

.hero h1 span {
  color: var(--primary);
  display: inline-block;
  border-bottom: 2px solid rgba(32, 73, 63, 0.35);
}

.hero-copy {
  margin: 0;
  max-width: 46rem;
  color: var(--sub);
  line-height: 1.78;
  font-size: 1.02rem;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  padding: 0.82rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #2f6a5a, #20493f);
  box-shadow: var(--shadow);
}

.btn-ghost {
  color: var(--primary);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.48);
}

.highlights {
  margin: 2.4rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.highlights li {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  box-shadow: 0 8px 30px rgba(32, 73, 63, 0.06);
}

.highlights strong {
  font-size: 0.98rem;
}

.highlights span {
  color: var(--sub);
  font-size: 0.92rem;
}

.about {
  margin-top: 1rem;
  padding: 2.2rem;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.75), rgba(255, 252, 247, 0.5));
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 2rem;
}

.about h2,
.section-head h2 {
  margin: 0.4rem 0 0.9rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
}

.about p {
  color: var(--sub);
  line-height: 1.78;
}

.about-card {
  align-self: center;
  padding: 1.6rem;
  border-radius: 20px;
  background: #fffaf3;
  border: 1px solid rgba(32, 73, 63, 0.2);
}

.about-card p {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary-2);
}

.about-card h3 {
  margin: 0.7rem 0 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
}

.about-card ul {
  margin: 0;
  padding-left: 1rem;
  line-height: 1.8;
  color: var(--sub);
}

.services {
  padding: 5rem 0 2rem;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.service-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  padding: 1.35rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 251, 245, 0.92);
  box-shadow: 0 10px 24px rgba(32, 73, 63, 0.08);
}

.service-card h3 {
  margin: 0;
  font-size: 1.18rem;
}

.service-card p {
  margin: 0.7rem 0 0.9rem;
  color: var(--sub);
  line-height: 1.68;
}

.service-card span {
  display: inline-block;
  font-size: 0.86rem;
  color: var(--primary-2);
  background: rgba(196, 232, 215, 0.32);
  border-radius: 999px;
  padding: 0.33rem 0.65rem;
}

.process {
  padding: 4rem 0 3.5rem;
}

.process ol {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.process li {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
  padding: 1rem;
}

.process h4 {
  margin: 0;
  font-size: 0.98rem;
}

.process p {
  margin: 0.55rem 0 0;
  color: var(--sub);
  line-height: 1.58;
  font-size: 0.92rem;
}

.cta {
  margin-bottom: 4.3rem;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 1.3rem;
  background: linear-gradient(135deg, rgba(255, 252, 245, 0.7), rgba(209, 233, 223, 0.58));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cta p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer {
  border-top: 1px solid rgba(32, 73, 63, 0.2);
  background: rgba(255, 250, 241, 0.82);
  padding-top: 2.1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr;
  gap: 1.2rem;
  padding-bottom: 1.6rem;
}

.footer h3 {
  margin: 0 0 0.6rem;
  font-family: "Cormorant Garamond", serif;
  color: var(--primary);
  font-size: 1.85rem;
}

.footer p,
.footer a {
  display: block;
  margin: 0.3rem 0;
  color: var(--sub);
  text-decoration: none;
}

.footer a:hover {
  color: var(--primary);
}

.footer small {
  display: block;
  text-align: center;
  padding: 1rem 1rem 1.6rem;
  color: #6b6257;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .highlights,
  .process ol,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    min-height: 340px;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }
}

@media (max-width: 680px) {
  .nav {
    display: none;
  }

  .hero {
    padding-top: 5.6rem;
  }

  .highlights,
  .service-grid,
  .process ol,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    min-height: 280px;
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
